-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (72 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "CADET-RDM"
dynamic = ["version"]
authors = [
{ name = "Ronald Jäpel", email = "[email protected]" },
{ name = "Johannes Schmölder", email = "[email protected]" },
{ name = "Eric von Lieres", email = "[email protected]" }
]
description = "A Python toolbox for research data management."
readme = "README.md"
requires-python = ">3.7"
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",
]
[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"
[project.optional-dependencies]
testing = [
"setuptools",
"pytest",
"certifi", # tries to prevent certificate problems on windows
"pre-commit", # system tests run pre-commit
"flake8", # system tests run flake8
"matplotlib",
"numpy",
"build",
]
jupyter = [
"nbformat",
"nbconvert",
"ipylab",
"junix",
"jupytext",
]
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",
]
[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"
]
[tool.setuptools.dynamic]
version = { attr = "cadetrdm.__version__" }