|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=42", "wheel"] |
3 | | -build-backend = "setuptools.build_meta" |
| 2 | +requires = ["flit_core >=3.2,<4"] |
| 3 | +build-backend = "flit_core.buildapi" |
4 | 4 |
|
5 | 5 | [tool.isort] |
6 | 6 | profile = "black" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "pytest_codeblocks" |
| 10 | +authors = [{name = "Nico Schlömer", email = "nico.schloemer@gmail.com"}] |
| 11 | +description = "Test code blocks in your READMEs" |
| 12 | +readme = "README.md" |
| 13 | +license = {file = "LICENSE.txt"} |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Framework :: Pytest", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3.7", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | +] |
| 27 | +dynamic = ["version"] |
| 28 | +requires-python = ">=3.7" |
| 29 | +dependencies = [ |
| 30 | + "pytest >= 6" |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Code = "https://github.com/nschloe/pytest-codeblocks" |
| 35 | +Issues = "https://github.com/nschloe/pytest-codeblocks/issues" |
| 36 | +Funding = "https://github.com/sponsors/nschloe" |
| 37 | + |
| 38 | +[project.entry-points.pytest11] |
| 39 | +codeblocks = "pytest_codeblocks.plugin" |
0 commit comments