-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (30 loc) · 999 Bytes
/
pyproject.toml
File metadata and controls
39 lines (30 loc) · 999 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["essos"]
[tool.setuptools_scm]
write_to = "essos/version.py"
[project]
name = "essos"
description = "ESSOS: e-Stellarator Simulation and Optimization Suite"
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", "tqdm", "matplotlib", "diffrax", "optax", "jaxopt", "optimistix", "scipy", "jaxkd", "netcdf4"]
requires-python = ">=3.10"
[project.urls]
Homepage = "https://github.com/uwplasma/ESSOS"
[project.scripts]
essos = "essos.__main__:main"