2
2
requires = [" setuptools>=66.1" ]
3
3
build-backend = " setuptools.build_meta"
4
4
5
- [tool .setuptools ]
6
- license-files = [" LICENSE" ]
7
-
8
- [tool .setuptools .packages .find ]
9
- exclude =[" tests*" , " sandbox" ]
10
-
11
5
[project ]
12
6
name = " pylint-pytest"
13
- version = " 1.1.3"
7
+ version = " 2.0.0rc0"
8
+ license = {file = " LICENSE" }
9
+ description = " A Pylint plugin to suppress pytest-related false positives."
10
+
14
11
authors = [
15
12
{name = " Reverb Chu" },
16
13
]
17
14
maintainers = [
18
15
{
name =
" Stavros Ntentos" ,
email =
" [email protected] " },
19
16
{
name =
" Pierre Sassoulas" ,
email =
" [email protected] " },
20
17
]
21
- description = " A Pylint plugin to suppress pytest-related false positives. "
22
- readme = " README.md"
18
+
19
+ readme = " README.md"
23
20
classifiers = [
24
21
" Development Status :: 5 - Production/Stable" ,
25
22
" Intended Audience :: Developers" ,
@@ -34,27 +31,44 @@ classifiers = [
34
31
" Programming Language :: Python :: 3.12" ,
35
32
" Programming Language :: Python :: Implementation :: CPython" ,
36
33
" Operating System :: OS Independent" ,
34
+ " License :: OSI Approved :: MIT License" ,
35
+ ]
36
+ keywords = [
37
+ " pylint" ,
38
+ " pytest" ,
39
+ " plugin" ,
37
40
]
38
- keywords = [" pylint" , " pytest" , " plugin" ]
39
- requires-python = " >=3.8"
40
41
42
+ requires-python = " >=3.8"
41
43
dependencies = [
42
- " pylint<3 " ,
43
- " pytest>=4.6"
44
+ " pylint>=2 " ,
45
+ " pytest>=4.6" ,
44
46
]
45
47
46
48
[project .optional-dependencies ]
47
49
test = [
48
50
" pytest" ,
49
51
" pytest-cov" ,
52
+ # For linting purposes, only pylint>3 is supported
53
+ " pylint>=3" ,
50
54
]
51
55
52
56
[project .urls ]
53
- "Changelog" =" https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md"
54
- "Documentation" =" https://github.com/pylint-dev/pylint-pytest#readme"
55
- "Say Thanks!" =" https://saythanks.io/to/stdedos"
56
- "Source" =" https://github.com/pylint-dev/pylint-pytest"
57
- "Tracker" =" https://github.com/pylint-dev/pylint-pytest/issues"
57
+ Changelog = " https://github.com/pylint-dev/pylint-pytest/blob/master/CHANGELOG.md"
58
+ Documentation = " https://github.com/pylint-dev/pylint-pytest#readme"
59
+ Homepage = " https://github.com/pylint-dev/pylint-pytest"
60
+ Source = " https://github.com/pylint-dev/pylint-pytest"
61
+ Tracker = " https://github.com/pylint-dev/pylint-pytest/issues"
62
+ "Say Thanks!" = " https://saythanks.io/to/stdedos"
63
+
64
+ [tool .setuptools ]
65
+ license-files = [" LICENSE" ]
66
+
67
+ [tool .setuptools .packages .find ]
68
+ exclude = [
69
+ " tests*" ,
70
+ " sandbox" ,
71
+ ]
58
72
59
73
[tool .aliases ]
60
74
test = " pytest"
0 commit comments