forked from freegs-plasma/freegs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.4 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
49
50
51
52
53
[build-system]
requires = [
"setuptools >= 61.0.0",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "FreeGS"
description = "Free boundary Grad-Shafranov solver for tokamak plasma equilibria"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Physics"
]
license = {text = "GNU Lesser General Public License v3 or later (LGPLv3+)"}
authors = [{name = "Ben Dudson", email = "[email protected]"}]
urls = {project = "https://github.com/freegs-plasma/freegs"}
dependencies = [
"numpy>=1.8",
"scipy>=0.14",
"matplotlib>=1.3",
"h5py>=2.10.0",
"Shapely>=1.7.1",
"importlib-metadata<4.3,>=1.1.0",
"freeqdsk>=0.1.0",
]
dynamic = ["version"]
[project.optional-dependencies]
tests = [
"pytest",
]
docs = [
"sphinx>=3.4,<5",
]
[tool.setuptools]
packages = ["freegs"]
[tool.setuptools.dynamic]
version = { attr = "setuptools_scm.get_version" }
[tool.setuptools_scm]
write_to = "freegs/_version.py"