-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
61 lines (56 loc) · 1.5 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
[project]
name = "freeqdsk"
description = "GEQDSK and AEQDSK tokamak equilibrium file reader/writer"
readme = "README.md"
authors = [
{name = "Ben Dudson"},
{name = "Peter Hill"},
{name = "Liam Pattinson"},
]
license = {file = "LICENSE"}
dynamic = ["version"]
keywords = ["GEQDSK", "AEQDSK", "plasma", "equilibrium"]
classifiers = [
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.22",
"fortranformat ~= 2.0",
]
[project.optional-dependencies]
tests = [
"pytest >= 3.3.0",
"pytest-cov",
]
docs = [
"sphinx >= 5.3",
"sphinx-book-theme >= 0.4.0rc1",
"sphinx_autodoc_typehints >= 1.19",
]
dev = [
"flake8",
"black",
]
[project.urls]
Source = "https://github.com/freegs-plasma/FreeQDSK"
Tracker = "https://github.com/freegs-plasma/FreeQDSK/issues"
[build-system]
requires = [
"setuptools >= 65",
"setuptools_scm[toml] >= 6.2",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "freeqdsk/_version.py"
git_describe_command = "git describe --dirty --tags --long --match v* --first-parent"