-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (86 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
99 lines (86 loc) · 2.42 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "CADET-RDM"
dynamic = ["version"]
authors = [
{ name = "Ronald Jäpel", email = "r.jaepel@fz-juelich.de" },
{ name = "Johannes Schmölder", email = "j.schmoelder@fz-juelich.de" },
{ name = "Eric von Lieres", email = "e.von.lieres@fz-juelich.de" },
{ name = "Hannah Lanzrath", email = "h.lanzrath@fz-juelich.de" }
]
description = "A Python toolbox for research data management."
readme = "README.md"
requires-python = ">=3.11"
keywords = ["research data management"]
license = { text = "GPLv3" }
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Intended Audience :: Science/Research",
]
dependencies = [
"gitpython>=3.1",
"python-gitlab",
"pygithub",
"click",
"tabulate",
"keyring",
"addict",
"numpy",
"pyyaml",
"semantic-version",
"docker", # python-docker interface
"cookiecutter",
]
[project.scripts]
rdm = "cadetrdm.cli_integration:cli"
[project.urls]
homepage = "https://github.com/cadet/CADET-RDM"
documentation = "https://cadet-rdm.readthedocs.io/en/latest/index.html"
"Bug Tracker" = "https://github.com/cadet/CADET-RDM/issues"
[dependency-groups]
testing = [
"setuptools",
"pytest",
"certifi", # tries to prevent certificate problems on windows
"pre-commit", # system tests run_yml pre-commit
"flake8", # system tests run_yml flake8
"matplotlib",
"numpy",
"build",
]
docs = [
"sphinx>=5.3.0",
"sphinxcontrib-bibtex>=2.5.0",
"sphinx_book_theme>=1.0.0",
"sphinx_copybutton>=0.5.1",
"sphinx-sitemap>=2.5.0",
"numpydoc>=1.5.0",
"myst-nb>=0.17.1",
"sphinx-subfigure>=0.2.4",
]
[project.optional-dependencies]
jupyter = [
"nbformat",
"nbconvert",
"ipylab",
"junix",
"jupytext",
"jupyterlab",
]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"server_api: marks tests as using the GitLab/GitHub API",
"container: marks tests as using containerization interfaces such as Docker or Apptainer"
]
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
include = ["cadetrdm*"]
exclude = ["tmp*", "batch_repos*"]
[tool.setuptools.dynamic]
version = { attr = "cadetrdm.__version__" }