-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.22 KB
/
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
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nt2py"
dynamic = ["version"]
dependencies = [
"types-setuptools",
"dask",
"xarray",
"numpy",
"scipy",
"h5py",
"h5pickle",
"matplotlib",
"tqdm",
"contourpy",
]
requires-python = ">=3.8"
authors = [{ name = "Hayk", email = "[email protected]" }]
maintainers = [{ name = "Hayk", email = "[email protected]" }]
description = "Post-processing & visualization toolkit for the Entity PIC code"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Astronomy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/entity-toolkit/nt2py"
[tool.hatch.version]
path = "nt2/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["nt2"]