|
1 | | -[tool.poetry] |
| 1 | +[project] |
2 | 2 | name = "pyEPR-ESR" |
3 | 3 | version = "1.1" |
4 | 4 | description = "" |
5 | | -authors = ["Hugo Karas <hkaras@ethz.ch>", "Gunnar Jeschke <gjeschke@eth.ch>", "Stefan Stoll <stst@uw.edu>"] |
6 | 5 | readme = "README.md" |
7 | | -packages = [ |
8 | | - { include = "pyepr" } |
| 6 | +requires-python = ">=3.11,<4.0" |
| 7 | +authors = [ |
| 8 | + { name = "Hugo Karas", email = "hkaras@ethz.ch" }, |
| 9 | + { name = "Gunnar Jeschke", email = "gjeschke@eth.ch" }, |
| 10 | + { name = "Stefan Stoll", email = "stst@uw.edu" }, |
| 11 | +] |
| 12 | +dependencies = [ |
| 13 | + "numpy>=2.1,<3.0", |
| 14 | + "scipy>=1.14.1", |
| 15 | + "matplotlib>=3.9.2", |
| 16 | + "pyyaml>=6.0.2,<7.0.0", |
| 17 | + "xarray>=2025", |
| 18 | + "h5py>3.15", |
| 19 | + "h5netcdf>1.4.0", |
| 20 | + "toml>=0.10.2", |
| 21 | + "deerlab>=1.1.4,<2.0", |
| 22 | + "psutil>=7.1.3", |
| 23 | + "requests>=2.32", |
9 | 24 | ] |
10 | 25 |
|
11 | | -[tool.poetry.dependencies] |
12 | | -python = ">=3.11,<4.0" |
13 | | -numpy = ">=2.1,<3.0" |
14 | | -scipy = ">=1.14.1" |
15 | | -matplotlib = ">=3.9.2" |
16 | | -pyyaml = "^6.0.2" |
17 | | -xarray = ">=2025" |
18 | | -h5py = ">3.15" |
19 | | -h5netcdf = ">1.4.0" |
20 | | -toml = ">=0.10.2" |
21 | | -deerlab = ">=1.1.4,<2.0" |
22 | | -psutil = ">=7.1.3" |
23 | | -requests = ">=2.32" |
24 | | - |
25 | | - |
26 | | -[tool.poetry.group.dev.dependencies] |
27 | | -gitpython = "^3.1.43" |
28 | | -pytest = "^8.3.3" |
29 | | - |
30 | | - |
31 | | -[tool.poetry.group.doc.dependencies] |
32 | | -furo = {version = ">=2024.8.6"} |
33 | | -autoapi = {version = ">=2.0.1"} |
34 | | -sphinx = {version = ">=8.1.3"} |
35 | | -sphinx-autoapi = ">=3.3.3" |
36 | | -sphinx-toolbox = ">=3.8.1" |
37 | | -sphinx-copybutton = ">=0.5.2" |
38 | | -numpydoc = ">=1.8.0" |
39 | | -sphinx-favicon = ">=1.0.1" |
40 | | -sphinx-autobuild = ">=2025.8.25" |
41 | | -sphinx-gallery = ">=0.19.0" |
42 | | -myst-parser = ">=4.0.1" |
43 | | -sphinx-design = ">=0.6.1" |
| 26 | +[project.optional-dependencies] |
| 27 | +dev = [ |
| 28 | + "gitpython>=3.1.43,<4.0.0", |
| 29 | + "pytest>=8.3.3,<9.0.0", |
| 30 | +] |
| 31 | +doc = [ |
| 32 | + "furo>=2024.8.6", |
| 33 | + "autoapi>=2.0.1", |
| 34 | + "sphinx>=8.1.3", |
| 35 | + "sphinx-autoapi>=3.3.3", |
| 36 | + "sphinx-toolbox>=3.8.1", |
| 37 | + "sphinx-copybutton>=0.5.2", |
| 38 | + "numpydoc>=1.8.0", |
| 39 | + "sphinx-favicon>=1.0.1", |
| 40 | + "sphinx-autobuild>=2025.8.25", |
| 41 | + "sphinx-gallery>=0.19.0", |
| 42 | + "myst-parser>=4.0.1", |
| 43 | + "sphinx-design>=0.6.1", |
| 44 | +] |
44 | 45 |
|
45 | 46 | [build-system] |
46 | | -requires = ["poetry-core"] |
47 | | -build-backend = "poetry.core.masonry.api" |
| 47 | +requires = ["hatchling"] |
| 48 | +build-backend = "hatchling.build" |
48 | 49 |
|
| 50 | +[tool.hatch.build.targets.wheel] |
| 51 | +packages = ["pyepr"] |
0 commit comments