forked from h-flox/flox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (40 loc) · 1.37 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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "flox"
version = "0.1.0"
description = "FLoX is a flexible, easy-to-deploy framework for serverless federated learning, with support for hierarchical and asynchronous federated learning."
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["federated learning", "machine learning", "serverless"]
authors = [
{ name = "Nathaniel Hudson", email = "[email protected]" },
{ name = "Valerie Hayot-Sasson", email = "[email protected]" }
]
maintainers = [
{ name = "Nathaniel Hudson", email = "[email protected]" },
{ name = "Valerie Hayot-Sasson", email = "[email protected]" },
]
requires-python = ">=3.8"
dependencies = [
"globus-compute-sdk",
"torch",
"pandas",
# "pygraphviz",
"tqdm",
"scipy",
]
[project.optional-dependencies]
dev = ["black", "coverage", "jupyterlab", "matplotlib", "numpy", "pytest", "seaborn", "tensorboard", "torchvision", "matplotlib-stubs", "pandas-stubs", "networkx-stubs"]
monitoring = ["tensorboard"]
proxystore = ["proxystore"]
docs = ["mkdocs", "mkdocs-material", "mkdocstrings[python]"]
all = ["flox[dev,monitoring,proxystore]"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.setuptools.packages.find]
include = ["flox*"]
namespaces = false