forked from uwplasma/SPECTRAX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (32 loc) · 1005 Bytes
/
pyproject.toml
File metadata and controls
41 lines (32 loc) · 1005 Bytes
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 = ["setuptools>=61.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["spectrax"]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
write_to = "spectrax/version.py"
[project]
name = "spectrax"
description = "SPECTRAX: Hermite-Fourier Vlasov solver in JAX"
readme = "README.md"
authors = [{ name = "UWPlasma, UW-Madison group", email = "rogerio.jorge@wisc.edu" }]
license = { file = "LICENSE" }
dynamic = ["version"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = ["Plasma",
"Physics",
"Simulation",
"JAX"]
dependencies = [ "jax", "jaxlib", "jax_tqdm", "matplotlib"]
requires-python = ">=3.5"
[project.urls]
Homepage = "https://github.com/uwplasma/SPECTRAX"
[project.scripts]
spectrax = "spectrax.__main__:main"