-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (73 loc) · 2.23 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"]
build-backend = "setuptools.build_meta"
[project]
name = "dataclay"
description = "Python distributed data store that enables remotely access and method execution."
readme = "README.md"
license = {text = "BSD-3-Clause"}
maintainers = [{name = "BSC-DOM", email = "support-dataclay@bsc.es"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Database :: Database Engines/Servers",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
requires-python = ">=3.9"
dependencies = [
"bcrypt>=4.0.1",
"grpcio>=1.59.2",
"grpcio-health-checking>=1.59.2",
"hiredis>=2.2.3",
"opentelemetry-api>=1.20.0",
"protobuf>=4.25.0",
"psutil>=5.9.6",
"pydantic-settings>=2.0.3",
"redis>=5.0.1",
"get-annotations;python_version<\"3.10\"",
]
dynamic = ["version"]
[project.urls]
"Documentation" = "https://dataclay.bsc.es/"
"Code" = "https://github.com/bsc-dom/dataclay"
"Issue tracker" = "https://github.com/bsc-dom/dataclay/issues"
[project.optional-dependencies]
dev = [
"tox",
"pytest",
"pytest-docker",
"grpcio-tools",
"black",
"isort",
]
mn4 = ["ansible", "ansible_runner", "python-dotenv"]
docs = ["furo", "sphinx-copybutton"]
metrics = ["prometheus-client"]
telemetry = [
"opentelemetry-sdk",
"opentelemetry-exporter-otlp-proto-grpc",
"opentelemetry-instrumentation-grpc",
"opentelemetry-instrumentation-redis",
]
[project.scripts]
dataclayctl = "dataclay.control.ctl:main"
[tool.setuptools.dynamic]
version = {attr = "dataclay.__version__"}
[tool.isort]
profile = "black"
extend_skip = "src/dataclay/proto"
[tool.black]
line-length = 100
extend-exclude = "src/dataclay/proto"
[tool.pylint.format]
max-line-length = 100