-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
84 lines (73 loc) · 1.91 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = [
"setuptools >= 61.0",
"forthon>=0.10.7",
"numpy"
]
build-backend = "setuptools.build_meta"
[project]
# TODO: Make version dynamic!
dynamic = ["version"]
#version = "8.1.0-beta.0"
name = "uedge"
dependencies = [
"forthon>=0.10.7",
"numpy"
]
requires-python = ">= 3.7" # TODO: verify
authors = [
{name = "Tom Rognlien"}
]
maintainers = [
{name = "Bill Meyer", email = "[email protected]"},
{name = "Andreas Holm", email = "[email protected]"}
]
description = "2D Fluid simulation of plasma and neutrals in magnetic fusion devices"
readme = "README.md"
keywords = [
"plasma",
"fusion",
"tokamak",
"edge-plasma",
"scrape-off layer",
"multi-fluid"
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Fortran",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/LLNL/UEDGE/"
#Documentation = "https://readthedocs.org"
Repository = "https://github.com/LLNL/UEDGE.git"
Issues = "https://github.com/LLNL/UEDGE/issues"
#Changelog = "https://github.com/me/spam/blob/master/CHANGELOG.md"
[project.optional-dependencies]
ueplot = [
"matplotlib",
"scipy",
"scikit-image",
"h5py",
]
# TODO: rewrite scripts to be importable
#[project.scripts]
#spam-cli = "spam:main_cli"
# TODO: add scripts to separate folder
[tool.setuptools]
script-files = [
"pyscripts/pdb2hdf5",
"pyscripts/bas2py",
"pyscripts/hdf52pdb",
]
#packages = ["uedge"]
#package-dir = {"" = "pyscripts"}
[tool.setuptools.dynamic]
#version = {attr = "uedge.__version__"}
version = {file = ["src/uedge/VERSION"]}
#version = {file = "VERSION"}