-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (74 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
79 lines (74 loc) · 1.83 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bee2bee"
version = "3.3.0"
description = "Decentralized P2P network for AI model hosting and inference"
authors = [{ name = "ConnectIT Team", email = "loaiabdalslam@gmail.com" }]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
keywords = ["p2p", "ai", "machine-learning", "distributed", "inference", "transformers"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.0",
"typer>=0.12",
"rich>=13.7",
"websockets>=12.0",
"psutil>=5.9",
"numpy>=1.24",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
hf = [
"transformers>=4.40",
"datasets>=2.17",
]
onnx = [
"onnx>=1.14",
"onnxruntime>=1.17",
]
torch = [
"torch>=2.1; platform_system != 'Windows' or platform_machine != 'ARM64'",
]
dht = [
"kademlia>=2.2.2",
]
nat = [
"miniupnpc>=2.2.5",
"aiortc>=1.9.0",
]
test = [
"pytest",
"httpx",
]
all = [
"transformers>=4.40",
"datasets>=2.17",
"onnx>=1.14",
"onnxruntime>=1.17",
"torch>=2.1; platform_system != 'Windows' or platform_machine != 'ARM64'",
"kademlia>=2.2.2",
"miniupnpc>=2.2.5",
"aiortc>=1.9.0",
]
[project.scripts]
bee2bee = "bee2bee.__main__:cli"
[tool.setuptools]
packages = ["bee2bee"]
[tool.setuptools.package-data]
bee2bee = ["*.json", "*.yaml", "*.yml"]