-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
41 lines (37 loc) · 976 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "openpmd_updater"
version = "1.0.0"
authors = [
{name = "Axel Huebl", email = "[email protected]"},
{name = "Sajid Ali", email = "[email protected]"},
{name = "Remi Lehe"},
]
readme = "README.md"
classifiers = [
# "Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
]
dynamic = ["description"]
dependencies = [
"numpy >=1.23",
"python-dateutil >=2.3.0",
"h5py>=3.8",
"packaging"
]
requires-python = ">=3.10"
[project.scripts]
openPMD_updater_h5 = "openpmd_updater.cli:main"
[project.optional-dependencies]
test = [
"requests", "pytest", "pytest-order"
]
[project.urls]
Home = "https://github.com/openPMD/openPMD-updater"