-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
87 lines (82 loc) · 2.01 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
82
83
84
85
86
87
[build-system]
requires = [
"setuptools>=63",
"setuptools_scm[toml]>7.0.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "kiara_plugin.documentation"
description = "Kiara user documentation."
authors = [
{name = "Markus Binsteiner", email = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["kiara"]
license = {text = "MPL-2.0"}
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
dependencies = [
"kiara>=0.4.32",
"kiara_plugin.network_analysis>=0.4.10",
"icecream>=2.1.0",
"mike>=1.0.1",
"mkdocs-awesome-pages-plugin>=2.5.0",
"mkdocs-literate-nav>=0.4.0",
"mkdocs-macros-plugin>=0.7.0",
"mkdocs-material>=8.0.0",
"mkdocs-section-index>0.3.0",
"mkdocstrings-python",
"mknotebooks>=0.7.0",
"mkdocs-gen-files>=0.3.1"
]
dynamic = ["version"]
[project.optional-dependencies]
dev_documentation = [
"kiara[dev_documentation]"
]
dev_testing = [
"kiara[dev_testing]",
"types-setuptools",
"sqlalchemy-stubs"
]
dev_utils = [
"kiara[dev_utils]"
]
dev_all = [
"kiara[dev_all]"
]
[project.urls]
homepage = "https://github.com/DHARPA-Project/kiara_plugin.documentation"
documentation = "https://DHARPA-Project.github.io/kiara_plugin.documentation"
repository = "https://github.com/DHARPA-Project/kiara_plugin.documentation"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| external
)/
'''
[tool.setuptools_scm]
write_to = "src/kiara_plugin/documentation/version.txt"