-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "packaging", "saxonche"]
build-backend = "setuptools.build_meta"
[project]
name = "data_dictionary"
description ="The Data Dictionary is the implementation of the Data Model of ITER's Integrated Modelling & Analysis Suite (IMAS)"
authors = [{name = "ITER Organization", email = "imas-support@iter.org"}]
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE-LGPL"}
keywords = ["IMAS", "Data Dictionary", "IDS"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics"
]
dynamic = ["version"]
dependencies = [
"packaging",
"setuptools_scm>=8"
]
[project.urls]
homepage = "https://github.com/iterorganization/imas-data-dictionary"
[tool.setuptools_scm]
write_to = "data_dictionary/_version.py"
[tool.setuptools.packages.find]
where = ["."]
include = ["data_dictionary*"]
[project.scripts]
idsinfo = "data_dictionary.idsinfo:main"
# Including script files
[tool.setuptools]
script-files = [
"scripts/dd_doc",
"scripts/dd_doclegacy"
]