|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=70.2.0", "wheel>=0.44.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "masterqa" |
| 7 | +readme = "README.md" |
| 8 | +dynamic = [ |
| 9 | + "version", |
| 10 | + "license", |
| 11 | + "authors", |
| 12 | + "scripts", |
| 13 | + "description", |
| 14 | + "maintainers", |
| 15 | + "entry-points", |
| 16 | + "dependencies", |
| 17 | + "requires-python", |
| 18 | +] |
| 19 | + |
| 20 | +[project.urls] |
| 21 | +"Homepage" = "https://github.com/masterqa/MasterQA" |
| 22 | +"Download" = "https://pypi.org/project/masterqa/#files" |
| 23 | +"PyPI" = "https://pypi.org/project/masterqa/" |
| 24 | +"Source" = "https://github.com/masterqa/MasterQA" |
| 25 | +"Repository" = "https://github.com/masterqa/MasterQA" |
| 26 | + |
| 27 | +[tool.setuptools] |
| 28 | +packages = [ |
| 29 | + "masterqa", |
| 30 | +] |
| 31 | + |
| 32 | +[tool.pytest.ini_options] |
| 33 | +addopts = ["--capture=tee-sys", "-p no:cacheprovider"] |
| 34 | +norecursedirs = [".*", "build", "dist", "recordings", "temp", "assets"] |
| 35 | +filterwarnings = [ |
| 36 | + "ignore::pytest.PytestWarning", |
| 37 | + "ignore:.*U.*mode is deprecated:DeprecationWarning", |
| 38 | +] |
| 39 | +junit_family = ["legacy"] |
| 40 | +python_files = ["test_*.py", "*_test.py", "*_tests.py", "*_suite.py"] |
| 41 | +python_classes = ["Test*", "*Test*", "*Test", "*Tests", "*Suite"] |
| 42 | +python_functions = ["test_*"] |
| 43 | +markers = [ |
| 44 | + "marker1", "marker2", "marker3", "marker_test_suite", |
| 45 | + "local", "remote", "offline", "expected_failure", |
| 46 | + "qa", "ci", "e2e", "smoke", "ready", "master", "deploy", |
| 47 | + "develop", "staging", "production", "release", "active", |
| 48 | +] |
0 commit comments