@@ -3,34 +3,21 @@ name = "poetry-core"
3
3
version = " 1.6.0"
4
4
description = " Poetry PEP 517 Build Backend"
5
5
authors = [
" Sébastien Eustace <[email protected] >" ]
6
-
7
6
license = " MIT"
8
-
9
7
readme = " README.md"
10
-
11
8
homepage = " https://github.com/python-poetry/poetry-core"
12
9
repository = " https://github.com/python-poetry/poetry-core"
13
-
14
10
keywords = [" packaging" , " dependency" , " poetry" ]
15
-
16
11
classifiers = [
17
12
" Topic :: Software Development :: Build Tools" ,
18
13
" Topic :: Software Development :: Libraries :: Python Modules"
19
14
]
20
-
21
15
packages = [
22
16
{ include = " poetry" , from = " src" },
23
17
]
24
18
include = [
25
19
{ path = " tests" , format = " sdist" },
26
20
]
27
- exclude = [
28
- " **/*.pyc" ,
29
- " **/*.pyi" ,
30
- ]
31
-
32
- [tool .poetry .build ]
33
- generate-setup-file = false
34
21
35
22
[tool .poetry .urls ]
36
23
"Bug Tracker" = " https://github.com/python-poetry/poetry/issues"
@@ -41,18 +28,21 @@ python = "^3.7"
41
28
# required for compatibility
42
29
importlib-metadata = {version = " >=1.7.0" , python = " <3.8" }
43
30
44
- [tool .poetry .dev- dependencies ]
31
+ [tool .poetry .group . dev . dependencies ]
45
32
pre-commit = " >=2.15.0"
46
- pyrsistent = " >=0.18.0"
47
- pytest = " >=7.1.2"
48
- pytest-cov = " >=3.0.0"
49
- pytest-mock = " >=3.5"
50
33
tox = " >=3.0"
51
34
vendoring = {version = " >=1.0" , python = " ^3.8" }
35
+
36
+ [tool .poetry .group .test .dependencies ]
37
+ pytest = " >=7.1.2"
38
+ pytest-cov = " >=3.0.0"
39
+ pytest-mock = " >=3.10"
52
40
build = " >=0.10.0"
53
- mypy = " >=1.0"
54
41
setuptools = " >=60"
55
42
tomli-w = " ^1.0.0"
43
+
44
+ [tool .poetry .group .typing .dependencies ]
45
+ mypy = " >=1.0"
56
46
types-jsonschema = " >=4.4.4"
57
47
types-setuptools = " >=57.4.14"
58
48
@@ -102,9 +92,7 @@ required-imports = ["from __future__ import annotations"]
102
92
103
93
104
94
[tool .black ]
105
- line-length = 88
106
95
preview = true
107
- include = ' \.pyi?$'
108
96
extend-exclude = " src/poetry/core/_vendor/*"
109
97
110
98
0 commit comments