-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.11 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
[project]
name = "blazefl"
version = "1.0.0"
description = "A blazing-fast and lightweight simulation framework for Federated Learning."
readme = "README.md"
authors = [
{ name = "kitsuya0828", email = "kitsuyaazuma@gmail.com" }
]
requires-python = ">=3.12"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy>=2.2.0",
"torch>=2.5.1",
"tqdm>=4.67.1",
"types-tqdm>=4.67.0.20241119",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest>=8.3.4",
"ruff>=0.8.2",
]
docs = [
"sphinx-book-theme>=1.1.3",
"sphinx>=8.1.3",
"sphinx-autobuild>=2024.10.3",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = []
fixable = ["ALL"]