-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.53 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
54
[build-system]
requires = [
"setuptools >= 61.0.0",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "zoidberg"
readme = "README.md"
authors = [{name = "Peter Hill", email = "[email protected]"}, {name = "BOUT++ team"}]
description = "Generate flux-coordinate independent (FCI) grids for BOUT++"
license = {text = "GNU Lesser General Public License v3 or later (LGPLv3+)"}
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = [
"bout++",
"bout",
"plasma",
"physics",
]
requires-python = ">=3.10"
dependencies = [
"boututils >= 0.1",
"numpy >= 1.24",
"sympy >= 1.7",
"scipy >= 1.10",
"matplotlib >= 3.7",
"netCDF4 >= 1.7",
"freeqdsk >= 0.4.0",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://bout-dev.readthedocs.io/en/latest"
Repository = "https://github.com/boutproject/zoidberg"
Tracker = "https://github.com/boutproject/zoidberg/issues"
[project.optional-dependencies]
tests = ["pytest >= 3.3.0"]
[project.scripts]
zoidberg-rotating-ellipse = "zoidberg.examples.rotating_ellipse:main"
zoidberg-screwpinch = "zoidberg.examples.screwpinch:main"
[tool.setuptools_scm]
write_to = "zoidberg/_version.py"
git_describe_command = "git describe --dirty --tags --first-parent"