-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 746 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 746 Bytes
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
from setuptools import setup, find_packages
setup(
name="decentralized-ai",
version="1.0.0",
packages=find_packages(include=['federated_learning*', 'ipfs*']),
package_data={
'federated_learning': ['zk-circuits/*.zok'],
},
install_requires=[
'torch>=2.2.0+cuda118',
'cryptography==41.0.7',
'zkpytorch @ git+https://github.com/yourorg/zkpytorch@main',
],
extras_require={
'gpu': ['cupy-cuda12x>=13.0.0'],
'quantum': ['qiskit-kyber==0.5.0'],
},
entry_points={
'console_scripts': [
'ai-train=federated_learning.train.federated_trainer:main',
],
},
dependency_links=[
'https://download.pytorch.org/whl/cu118/',
]
)