-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
78 lines (77 loc) · 2.17 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='FedYOLO',
version='0.1',
packages=find_packages(),
install_requires=[
'certifi==2024.8.30',
'cffi==1.17.1',
'charset-normalizer==3.4.0',
'click==8.1.7',
'contourpy==1.3.1',
'cryptography==42.0.8',
'cycler==0.12.1',
'filelock==3.16.1',
'flwr==1.13.1',
'fonttools==4.55.2',
'fsspec==2024.10.0',
'grpcio==1.64.3',
'idna==3.10',
'iterators==0.0.2',
'Jinja2==3.1.4',
'kiwisolver==1.4.7',
'markdown-it-py==3.0.0',
'MarkupSafe==3.0.2',
'matplotlib==3.9.3',
'mdurl==0.1.2',
'mpmath==1.3.0',
'networkx==3.4.2',
'numpy==2.2.0',
'nvidia-cublas-cu12==12.4.5.8',
'nvidia-cuda-cupti-cu12==12.4.127',
'nvidia-cuda-nvrtc-cu12==12.4.127',
'nvidia-cuda-runtime-cu12==12.4.127',
'nvidia-cudnn-cu12==9.1.0.70',
'nvidia-cufft-cu12==11.2.1.3',
'nvidia-curand-cu12==10.3.5.147',
'nvidia-cusolver-cu12==11.6.1.9',
'nvidia-cusparse-cu12==12.3.1.170',
'nvidia-nccl-cu12==2.21.5',
'nvidia-nvjitlink-cu12==12.4.127',
'nvidia-nvtx-cu12==12.4.127',
'opencv-python==4.10.0.84',
'packaging==24.2',
'pandas==2.2.3',
'pathspec==0.12.1',
'pillow==11.0.0',
'protobuf==4.25.5',
'psutil==6.1.0',
'py-cpuinfo==9.0.0',
'pycparser==2.22',
'pycryptodome==3.21.0',
'Pygments==2.18.0',
'pyparsing==3.2.0',
'python-dateutil==2.9.0.post0',
'pytz==2024.2',
'PyYAML==6.0.2',
'requests==2.32.3',
'rich==13.9.4',
'scipy==1.14.1',
'seaborn==0.13.2',
'shellingham==1.5.4',
'six==1.17.0',
'sympy==1.13.1',
'tomli==2.2.1',
'tomli_w==1.1.0',
'torch==2.5.1',
'torchvision==0.20.1',
'tqdm==4.67.1',
'triton==3.1.0',
'typer==0.12.5',
'typing_extensions==4.12.2',
'tzdata==2024.2',
'ultralytics==8.3.48',
'ultralytics-thop==2.0.13',
'urllib3==2.2.3',
],
)