forked from fusion-yun/fytok_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject_.toml
More file actions
46 lines (29 loc) · 938 Bytes
/
pyproject_.toml
File metadata and controls
46 lines (29 loc) · 938 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fytok_tutorial"
authors = [{ name = "Zhi YU", email = "yuzhi.student@gmail.com" }]
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE.txt" }
description = "Tokamak integrated modeling and analysis toolkit."
classifiers = [
"Development Status :: 0 - Beta",
"Intended Audience :: Plasma Physicists",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.11"
dependencies = ["spdm", "fytok"]
[tool.setuptools]
package-dir = { }
[tool.setuptools.packages.find]
where = ["python"]
exclude = ["*.obsolete", "*.obsolete.*", "*.todo", "*.todo.*"]
namespaces = true
[tool.setuptools.package-data]
"*" = ["*.xml"]
[tool.setuptools.dynamic]
version = { file = "VERSION" }