|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "dhall" |
3 | 3 | version = "0.1.17" |
4 | 4 | description = "Python bindings for dhall, a functional configuration language" |
5 | | -authors = ["Simon Zeng <contact@simonzeng.com>", "Tristan Cacqueray <tdecacqu@redhat.com>", "Matthias Endler <matthias-endler@gmx.net>"] |
| 5 | +authors = [ |
| 6 | + { name = "Simon Zeng", email = "contact@simonzeng.com" }, |
| 7 | + { name = "Tristan Cacqueray", email = "tdecacqu@redhat.com" }, |
| 8 | + { name = "Matthias Endler", email = "matthias-endler@gmx.net" }, |
| 9 | +] |
6 | 10 | license = "Apache-2.0" |
7 | 11 | readme = "README.md" |
8 | | -packages = [{ include = "dhall" }] |
9 | | -repository = "https://github.com/s-zeng/dhall-python" |
| 12 | +requires-python = ">=3.10" |
10 | 13 | keywords = ["dhall", "python"] |
11 | 14 | classifiers = [ |
12 | 15 | "Development Status :: 4 - Beta", |
13 | 16 | "Intended Audience :: Developers", |
14 | | - "License :: OSI Approved :: Apache Software License", |
15 | | - "License :: OSI Approved", |
16 | 17 | "Operating System :: MacOS", |
17 | 18 | "Operating System :: Microsoft :: Windows", |
18 | 19 | "Operating System :: POSIX :: Linux", |
19 | 20 | "Programming Language :: Python :: 3", |
20 | 21 | ] |
21 | 22 |
|
22 | | -[tool.poetry.dependencies] |
23 | | -python = "^3.7" |
24 | | - |
25 | | -[tool.poetry.dev-dependencies] |
26 | | -pytest = "~=7.0" |
27 | | -pylint = "~=2.6" |
28 | | -flake8 = "~=5.0" |
29 | | -wheel = "*" |
30 | | -pytest-runner = "*" |
31 | | -pytest-benchmark = "*" |
32 | | -hypothesis = "*" |
33 | | -autopep8 = "*" |
34 | | -maturin = "~=1.1" |
| 23 | +[project.urls] |
| 24 | +repository = "https://github.com/s-zeng/dhall-python" |
35 | 25 |
|
36 | 26 | [build-system] |
37 | | -requires = ["maturin"] |
| 27 | +requires = ["maturin>=1.9,<2"] |
38 | 28 | build-backend = "maturin" |
39 | 29 |
|
40 | 30 | [tool.maturin] |
41 | 31 | compatibility = "manylinux_2_24" |
42 | 32 | skip-auditwheel = false |
43 | 33 | sdist-include = ["dhall/*"] |
| 34 | + |
| 35 | +[dependency-groups] |
| 36 | +dev = [ |
| 37 | + "pytest>=9,<10", |
| 38 | + "pytest-benchmark>=5,<6", |
| 39 | + "hypothesis>=6,<7", |
| 40 | + "maturin>=1.9,<2", |
| 41 | +] |
0 commit comments