-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
54 lines (48 loc) · 1.18 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>59", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
version_file = "src/VERSION"
[project]
name = "a5py"
dynamic = ["version"]
description = "ASCOT5 is a high-performance orbit-following code for fusion plasma physics and engineering"
authors = [
{name = "Konsta Särkimäki", email = "[email protected]"},
]
readme = "README.rst"
license = {text = "LGPL-3.0-or-later"}
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"h5py",
"unyt",
"wurlitzer",
"xmlschema",
]
[project.optional-dependencies]
mpi = [
"mpi4py",
]
[tool.setuptools.packages.find]
include = [
'a5py',
'a5py.*',
]
[project.urls]
Homepage = "https://github.com/ascot4fusion/ascot5"
Documentation = "https://ascot4fusion.github.io/ascot5/"
Repository = "https://github.com/ascot4fusion/ascot5.git"
"Bug Tracker" = "https://github.com/ascot4fusion/ascot5/issues"
Changelog = "https://github.com/ascot4fusion/ascot5/releases"
[tool.setuptools]
zip-safe = false
script-files=[
'bin/a5manage',
'bin/a5editoptions',
'bin/a5combine',
'bin/a5gui',
'bin/a5update',
]