-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.83 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8", "packaging", "saxonche"]
build-backend = "setuptools.build_meta:__legacy__"
[tool.setuptools.cmdclass]
install = "setup.CustomInstallCommand"
build_py = "setup.BuildPyCommand"
develop = "setup.DevelopCommand"
[project]
name = "imas-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 = "[email protected]" }]
readme = { file = "README.md", content-type = "text/markdown" }
license = "LGPL-3.0+ AND CC-BY-ND-4.0"
license-files = ["LICENSE-LGPL", "LICENSE-CC-BY-ND"]
keywords = ["IMAS", "Data Dictionary", "IDS"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Physics",
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = ["packaging"]
[project.optional-dependencies]
test = ["pytest>=6.0", "pytest-cov"]
[project.urls]
homepage = "https://github.com/iterorganization/IMAS-Data-Dictionary"
[tool.setuptools_scm]
write_to = "imas_data_dictionary/_version.py"
local_scheme = "no-local-version"
[tool.setuptools]
packages = ["imas_data_dictionary"]
[tool.setuptools.package-data]
"imas_data_dictionary" = [
"resources/schemas/**/*.xml",
"resources/docs/**/*",
"resources/include/*.txt", # note: kept for backward compatibility.
# TODO develop a more robust testing solution that does not rely on checking for `ERROR` in the inputs/dd_data_dictionary_validation.txt file
]
[project.scripts]
idsinfo = "imas_data_dictionary.idsinfo:main"
dd_doc = "imas_data_dictionary.dd_doc:main"
[tool.pytest.ini_options]
testpaths = ["imas_data_dictionary/test"]