|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "asserts" |
3 | 3 | version = "0.13.2.dev0" |
4 | 4 | description = "Stand-alone Assertions" |
5 | 5 | readme = "README.md" |
6 | | -authors = ["Sebastian Rittau <srittau@rittau.biz>"] |
| 6 | +authors = [{ name = "Sebastian Rittau", email = "srittau@rittau.biz" }] |
7 | 7 | license = "MIT" |
8 | | -homepage = "https://github.com/srittau/python-asserts" |
9 | | -repository = "https://github.com/srittau/python-asserts" |
10 | 8 | classifiers = [ |
11 | 9 | "Development Status :: 3 - Alpha", |
12 | 10 | "Intended Audience :: Developers", |
13 | 11 | "Topic :: Software Development :: Quality Assurance", |
14 | 12 | "Topic :: Software Development :: Testing", |
15 | 13 | ] |
16 | | -packages = [{ include = "asserts" }] |
17 | | -include = ["*/py.typed", "*.pyi"] |
| 14 | +requires-python = ">= 3.8.1" |
| 15 | +dependencies = ["typing-extensions >= 4.10.0, < 5"] |
18 | 16 |
|
19 | | -[tool.poetry.urls] |
| 17 | +[project.urls] |
| 18 | +"Homepage" = "https://github.com/srittau/python-asserts" |
| 19 | +"Repository" = "https://github.com/srittau/python-asserts" |
20 | 20 | "GitHub" = "https://github.com/srittau/python-asserts" |
21 | 21 | "Bug Tracker" = "https://github.com/srittau/python-asserts/issues" |
22 | 22 | "Changes" = "https://github.com/srittau/python-asserts/blob/main/CHANGELOG.md" |
23 | 23 |
|
24 | | -[tool.poetry.dependencies] |
25 | | -python = ">=3.8.1" |
26 | | -typing-extensions = "^4.10.0" |
| 24 | +[project.optional-dependencies] |
| 25 | +dev = [ |
| 26 | + "mypy >= 1.9, < 1.15", |
| 27 | + "poethepoet >= 0.27.0, < 0.31", |
| 28 | + "ruff >= 0.5.1, < 0.15.0", |
| 29 | +] |
27 | 30 |
|
28 | | -[tool.poetry.group.dev.dependencies] |
29 | | -mypy = ">=1.9,<1.15" |
30 | | -poethepoet = ">=0.27.0,<0.31" |
31 | | -ruff = ">=0.5.1,<0.15.0" |
| 31 | +[tool.poetry] |
| 32 | +packages = [{ include = "asserts" }] |
| 33 | +include = ["*/py.typed", "*.pyi"] |
32 | 34 |
|
33 | 35 | [tool.ruff] |
34 | 36 | line-length = 79 |
|
0 commit comments