File tree Expand file tree Collapse file tree 2 files changed +27
-32
lines changed Expand file tree Collapse file tree 2 files changed +27
-32
lines changed Original file line number Diff line number Diff line change 1
1
[project ]
2
-
3
2
name = " pytest"
4
- dynamic = [
5
- " version" ,
6
- " optional-dependencies" ,
7
- " dependencies" ,
8
- " scripts" ,
9
- " requires-python"
10
- ]
3
+ dynamic = [" version" ]
11
4
description = " pytest: simple powerful testing with Python"
12
5
authors = [
13
6
{name = " Holger Krekel" },
@@ -41,6 +34,32 @@ classifiers = [
41
34
" Topic :: Utilities" ,
42
35
]
43
36
37
+ dependencies = [
38
+ " colorama;sys_platform=='win32'" ,
39
+ " exceptiongroup>=1.0.0rc8;python_version<'3.11'" ,
40
+ " iniconfig" ,
41
+ " packaging" ,
42
+ " pluggy>=1.4.0,<2.0" ,
43
+ " tomli>=1.0.0;python_version<'3.11'" ,
44
+ ]
45
+ requires-python = " >=3.8"
46
+
47
+ [project .optional-dependencies ]
48
+ testing = [
49
+ " argcomplete" ,
50
+ " attrs>=19.2.0" ,
51
+ " hypothesis>=3.56" ,
52
+ " mock" ,
53
+ " pygments>=2.7.2" ,
54
+ " requests" ,
55
+ " setuptools" ,
56
+ " xmlschema" ,
57
+ ]
58
+
59
+ [project .scripts ]
60
+ "py.test" = " pytest:console_main"
61
+ pytest = " pytest:console_main"
62
+
44
63
[project .urls ]
45
64
Homepage = " https://docs.pytest.org/en/latest/"
46
65
Changelog = " https://docs.pytest.org/en/stable/changelog.html"
Original file line number Diff line number Diff line change 1
1
[options]
2
- install_requires =
3
- iniconfig
4
- packaging
5
- pluggy>=1.4.0,<2.0
6
- colorama; sys_platform=="win32"
7
- exceptiongroup>=1.0.0rc8; python_version<"3.11"
8
- tomli>=1.0.0; python_version<"3.11"
9
- python_requires = >=3.8
10
2
package_dir =
11
3
=src
12
4
setup_requires =
13
5
setuptools
14
6
setuptools-scm>=6.0
15
7
16
- [options.entry_points]
17
- console_scripts =
18
- pytest =pytest:console_main
19
- py.test =pytest:console_main
20
-
21
- [options.extras_require]
22
- testing =
23
- argcomplete
24
- attrs>=19.2.0
25
- hypothesis>=3.56
26
- mock
27
- pygments>=2.7.2
28
- requests
29
- setuptools
30
- xmlschema
31
-
32
8
[options.package_data]
33
9
_pytest = py.typed
34
10
pytest = py.typed
You can’t perform that action at this time.
0 commit comments