|
1 |
| -# Only a configuration storage, for now |
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=66.1"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pylint-pytest" |
| 7 | +version = "1.1.2" |
| 8 | +authors = [ |
| 9 | + { name = "Reverb Chu", email = "[email protected]"} |
| 10 | +] |
| 11 | +description = "A Pylint plugin to suppress pytest-related false positives." |
| 12 | +readme = "README.md" |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 5 - Production/Stable", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "Topic :: Software Development :: Testing", |
| 17 | + "Topic :: Software Development :: Quality Assurance", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.6", |
| 21 | + "Programming Language :: Python :: 3.7", |
| 22 | + "Programming Language :: Python :: 3.8", |
| 23 | + "Programming Language :: Python :: 3.9", |
| 24 | + "Programming Language :: Python :: 3.10", |
| 25 | + "Programming Language :: Python :: 3.11", |
| 26 | + "Programming Language :: Python :: Implementation :: CPython", |
| 27 | + "Operating System :: OS Independent", |
| 28 | +] |
| 29 | +keywords = ["pylint", "pytest", "plugin"] |
| 30 | +requires-python = ">=3.6" |
| 31 | + |
| 32 | +dependencies = [ |
| 33 | + "pylint<3", |
| 34 | + "pytest>=4.6" |
| 35 | +] |
| 36 | + |
| 37 | +[tool.setuptools] |
| 38 | +license-files = ["LICENSE"] |
| 39 | + |
| 40 | + |
| 41 | +[tool.aliases] |
| 42 | +test = "pytest" |
2 | 43 |
|
3 | 44 | [tool.black]
|
4 | 45 | line-length = 100
|
|
0 commit comments