-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
108 lines (101 loc) · 3.59 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[tool.poetry]
name = "gemtest"
version = "1.0.0"
description = "gemtest: a general metamorphic testing framework with pytest"
keywords = ["metamorphic testing", "test", "framework"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tum-i4/gemtest"
authors = [
"Simon Speth <[email protected]>",
"Paul Schwind <[email protected]>",
"Martin Rau <[email protected]>",
"Ting-Yu Lu <[email protected]>",
"Danny Benlin Oswan <[email protected]>",
"Tathagata Bandyopadhyay <[email protected]>",
"Fabian Schlachter <[email protected]>",
"Moritz Pötzsch <[email protected]>",
"Robin Brase <[email protected]>",
"Alexander Hobmeier <[email protected]>",
]
maintainers = ["Simon Speth <[email protected]>"]
packages = [
{ include = "gemtest", format = ["sdist", "wheel"] },
{ include = "tests", format = "sdist" },
]
[tool.poetry.scripts]
cov = "scripts.cov:html_coverage"
install-hook = "scripts.install_hook:install_hook"
lint = "scripts.lint:lint"
test = "scripts.run_tests:run_tests"
example = "scripts.run_tests:run_example"
example-fail = "scripts.run_tests:run_example_fail"
web-app = "scripts.run_web_app:run_web_app"
mutation-test = "scripts.run_mutation_testing:run_cosmic_ray"
mutation-new-config = "scripts.run_mutation_testing:create_new_config"
mutation-init = "scripts.run_mutation_testing:init_new_session"
mutation-baseline = "scripts.run_mutation_testing:check_baseline"
mutation-exec = "scripts.run_mutation_testing:execute"
mutation-text-report = "scripts.run_mutation_testing:create_report"
mutation-html-report = "scripts.run_mutation_testing:create_html_report"
[tool.poetry.plugins."pytest11"]
metamorphic = "gemtest"
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
hypothesis = "^6.49.1"
importlib-resources = [
{version = "<6.5.0", python = "3.8"},
{version = "^6.5.0", python = "3.9"}
]
matplotlib = [
{version = "^3.5.2", python = ">=3.8,<3.12"},
{version = "^3.8.0", python = ">=3.12,<3.14"}
]
numpy = [
{version = "^1.23.0", python = ">=3.8,<3.12"},
{version = "^2.0.0", python = ">=3.12,<3.14"}
]
opencv-python-headless = "^4.7.0.0"
pytest = ">=7.1.2,<9.0.0"
pytest-html = "^3.1.1"
pytest-xdist = "^3.2.1"
typing_extensions = ">=4.12.2,<5.0.0"
wrapt = "^1.14.1"
[tool.poetry.group.test.dependencies]
mypy = "^0.981"
prospector = { extras = ["with_mypy", "with_bandit"], version = "^1.7.7" }
pylint = "^2.17.7"
pytest-cov = "^4.0.0"
cosmic-ray = "^8.3.7"
setuptools = [
{version = "<75.4.0", python = "3.8"},
{version = "^75.7.0", python = ">=3.9,<3.14"}
]
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"