forked from PyCQA/pylint-pytest
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move metadata to pyproject.toml from setup.cfg
- Loading branch information
1 parent
a84640c
commit c20f679
Showing
2 changed files
with
42 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,45 @@ | ||
# Only a configuration storage, for now | ||
[build-system] | ||
requires = ["setuptools>=66.1"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pylint-pytest" | ||
version = "1.1.2" | ||
authors = [ | ||
{name = "Reverb Chu", email = "[email protected]"} | ||
] | ||
description = "A Pylint plugin to suppress pytest-related false positives." | ||
readme = "README.md" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Testing", | ||
"Topic :: Software Development :: Quality Assurance", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Operating System :: OS Independent", | ||
] | ||
keywords = ["pylint", "pytest", "plugin"] | ||
requires-python = ">=3.6" | ||
|
||
dependencies = [ | ||
"pylint<3", | ||
"pytest>=4.6" | ||
] | ||
|
||
[tool.setuptools] | ||
license-files = ["LICENSE"] | ||
|
||
|
||
[tool.aliases] | ||
test = "pytest" | ||
|
||
[tool.black] | ||
line-length = 100 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,5 @@ | ||
[metadata] | ||
name = pylint-pytest | ||
version = 1.1.2 | ||
author = Reverb Chu | ||
author_email = [email protected] | ||
maintainer = Reverb Chu | ||
maintainer_email = [email protected] | ||
license = MIT | ||
url = https://github.com/reverbc/pylint-pytest | ||
description = A Pylint plugin to suppress pytest-related false positives. | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Topic :: Software Development :: Testing | ||
Topic :: Software Development :: Quality Assurance | ||
Programming Language :: Python | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Operating System :: OS Independent | ||
License :: OSI Approved :: MIT License | ||
keywords = | ||
pylint | ||
pytest | ||
plugin | ||
|
||
[options] | ||
packages = find: | ||
install_requires = | ||
pylint<3 | ||
pytest>=4.6 | ||
python_requires = >=3.6 | ||
tests_require = | ||
pytest | ||
pytest-cov | ||
|
@@ -47,8 +10,5 @@ exclude = | |
tests | ||
sandbox | ||
|
||
[aliases] | ||
test = pytest | ||
|
||
[bdist_wheel] | ||
universal = 1 |