-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
66 lines (64 loc) · 1.74 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
[project]
name = "nucliadb_workspace"
requires-python = ">=3.9"
version = "0.0.0"
dependencies = [
"nucliadb @ file:///${PROJECT_ROOT}/nucliadb",
]
[project.optional-dependencies]
sidecar = [
"nucliadb-sidecar @ file:///${PROJECT_ROOT}/nucliadb_sidecar",
]
[tool.pdm.dev-dependencies]
dev = [
# List all the packages we want to install as editable
"-e file:///${PROJECT_ROOT}/nucliadb",
"-e file:///${PROJECT_ROOT}/nucliadb_models",
"-e file:///${PROJECT_ROOT}/nucliadb_sidecar",
"-e file:///${PROJECT_ROOT}/nucliadb_node_binding",
"-e file:///${PROJECT_ROOT}/nucliadb_protos/python",
"-e file:///${PROJECT_ROOT}/nucliadb_telemetry[all]",
"-e file:///${PROJECT_ROOT}/nucliadb_utils[cache,fastapi,storages]",
# Linting
"mypy-protobuf>=3.6.0",
"mypy==1.10",
"ruff==0.4.8",
"pre-commit==2.20.0",
# Testing
"pytest==8.2.2",
"pytest-asyncio~=0.23.0",
"pytest-cov==3.0.0",
"types-setuptools",
"types-redis",
"httpx>=0.23.0",
"pytest-docker-fixtures>=1.3.17",
"pytest-benchmark",
"docker>=7.1.0",
"grpcio-health-checking==1.44.0",
"requests",
"maturin",
"pytest-lazy-fixtures",
"pytest-mock",
"faker>=25.1.0",
"grpc-stubs>=1.44.0",
"aioresponses",
"psycopg2-binary",
"httpx>=0.23.0",
"pytest-docker-fixtures>=1.3.17",
"aiobotocore",
"s3fs",
"redis>=4.3.4",
"pytest-rerunfailures>=11.1.2",
"pytest-shard",
"jsonschema",
"pytest-xdist>=3.6.1",
"pdbpp>=0.10.3",
"types-PyYAML>=6.0.12.20240808",
]
sdk = [
"-e file:///${PROJECT_ROOT}/nucliadb_sdk#egg=nucliadb-sdk",
"-e file:///${PROJECT_ROOT}/nucliadb_dataset#egg=nucliadb-dataset",
"requests-mock>=1.12.1",
]
[tool.setuptools]
py-modules = []