-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
88 lines (77 loc) · 2.13 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
88
[project]
name = "syftbox"
version = "0.2.11"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"fastapi==0.115.6",
"uvicorn==0.32.1",
"gunicorn==23.0.0",
"jinja2==3.1.4",
"typing-extensions==4.12.2",
"pydantic-settings==2.6.1",
"httpx==0.28.1",
"pyyaml==6.0.2",
"psutil==6.1.0",
"loguru==0.7.3",
"py-fast-rsync==0.1.0",
"pathspec==0.12.1",
"python-multipart==0.0.19",
"rich==13.9.4",
"croniter==5.0.1",
"typer==0.15.1",
"pid==3.0.4",
"pydantic[email]==2.10.3",
"pyjwt==2.10.1",
"wcmatch==10.0",
"curl-cffi>=0.7.4",
"opentelemetry-instrumentation-fastapi==0.50b0",
"opentelemetry-instrumentation-sqlite3==0.50b0",
"opentelemetry-exporter-otlp-proto-grpc==1.29.0",
"distro==1.9.0",
"msgpack>=1.1.0",
"tqdm>=4.67.1",
]
# Local dependencies for development
# Add using `uv add --group <group> <pip package>`
[dependency-groups]
# Published optional dependencies, or "extras". Will be referenced in the built wheel
# add using `uv add --optional <group> <pip package>`
[project.optional-dependencies]
[project.scripts]
syftbox = "syftbox.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = ["syftbox", "default_apps", "./uv.lock", "./README.md"]
exclude = ["syftbox/assets/icon/*"]
[tool.uv]
# add using `uv add --dev <group> <pip package>`
# this will be completely ignored in the built wheel
dev-dependencies = [
"bump2version>=1.0.1",
"faker>=30.3.0",
"ipykernel>=6.29.5",
"locust>=2.32.0",
"pre-commit>=4.0.1",
"pytest-asyncio>=0.24.0",
"pytest-cov>=5.0.0",
"pytest-httpx>=0.35.0",
"pytest-timeout>=2.3.1",
"pytest-xdist[psutil]>=3.6.1",
"pytest>=8.3.3",
]
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_default_fixture_loop_scope = "function"
[tool.ruff]
line-length = 120
exclude = [".venv", "dist", ".clients", ".e2e", ".server"]
[tool.ruff.lint]
extend-select = ["I"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.coverage.report]
skip_empty = true