|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pytest-fixture-tools" |
| 7 | +version = "1.2.0" |
| 8 | +description = "Plugin for pytest which provides tools for fixtures" |
| 9 | +dynamic = ["readme"] |
| 10 | +authors = [ |
| 11 | + { name = "Paylogic International", email = "developers@paylogic.com" }, |
| 12 | +] |
| 13 | +license = {text = "MIT license"} |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 6 - Mature", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "License :: OSI Approved :: MIT License", |
| 18 | + "Operating System :: POSIX", |
| 19 | + "Operating System :: Microsoft :: Windows", |
| 20 | + "Operating System :: MacOS :: MacOS X", |
| 21 | + "Topic :: Software Development :: Testing", |
| 22 | + "Topic :: Software Development :: Libraries", |
| 23 | + "Topic :: Utilities", |
| 24 | + "Programming Language :: Python :: 2", |
| 25 | + "Programming Language :: Python :: 3", |
| 26 | + "Programming Language :: Python :: 3.8", |
| 27 | + "Programming Language :: Python :: 3.9", |
| 28 | + "Programming Language :: Python :: 3.10", |
| 29 | + "Programming Language :: Python :: 3.11", |
| 30 | + "Programming Language :: Python :: 3.12", |
| 31 | +] |
| 32 | + |
| 33 | +dependencies = ["pytest", "pydot", "py"] |
| 34 | + |
| 35 | +[project.entry-points.pytest11] |
| 36 | +pytest-fixture-tools = "pytest_fixture_tools.plugin" |
| 37 | + |
| 38 | +[tool.setuptools] |
| 39 | +packages = ["pytest_fixture_tools"] |
| 40 | + |
| 41 | +[tool.setuptools.dynamic] |
| 42 | +readme = {file = ["README.rst", "CHANGES.rst"], content-type = "text/x-rst"} |
0 commit comments