-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.25 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
[project]
name = "pybiscus"
version = "0.8.0"
description = "A flexible Federated Learning framework"
authors = [
{ name = "BaptisteMorisse", email = "[email protected]" }
]
dependencies = [
"flwr>=1.8.0",
"rich>=13.7.1",
"lightning>=2.2.4",
"jsonargparse[signatures,omegaconf]>=4.28.0",
"omegaconf>=2.3.0",
"torch>=2.3.0",
"torchvision>=0.18.0",
"einops>=0.8.0",
"tensorboard>=2.16.2",
"pydantic>=2.7.1",
]
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">= 3.9, <3.13"
[project.urls]
Homepage = "https://misterbourbaki.github.io/pybiscus/"
Repository = "https://github.com/MisterBourbaki/pybiscus"
[project.scripts]
# pybiscus_app = "pybiscus.main:app"
pybiscus_server = "pybiscus.commands.app_server:server_cli"
pybiscus_client = "pybiscus.commands.app_client:client_cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
managed = true
dev-dependencies = [
"pytest>=8.2.0",
"pytest-cov>=5.0.0",
"ruff>=0.4.4",
"pre-commit>=3.7.1",
"mkdocs>=1.6.0",
"mkdocstrings[python]>=0.25.1",
"mkdocs-material>=9.5.23",
"ipython",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pybiscus"]