forked from JunkyByte/easy_ViTPose
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
57 lines (56 loc) · 1.55 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
from setuptools import setup, find_packages
setup(
name='easy_ViTPose',
author="JunkyByte",
author_email="[email protected]",
version='1.1',
url="https://github.com/JunkyByte/easy_ViTPose",
packages=find_packages(include=['easy_ViTPose', 'easy_ViTPose.*']),
install_requires=[
"certifi==2023.7.22",
"charset-normalizer==3.2.0",
"coloredlogs==15.0.1",
"contourpy==1.1.1",
"cycler==0.11.0",
"ffmpeg==1.4",
"filelock==3.12.4",
"filterpy==1.4.5",
"flatbuffers==23.5.26",
"fonttools==4.43.0",
"humanfriendly==10.0",
"idna==3.4",
"imageio==2.31.3",
"importlib-resources==6.1.0",
"jinja2>=3.1.3",
"kiwisolver==1.4.5",
"lazy_loader==0.3",
"MarkupSafe==2.1.3",
"mpmath==1.3.0",
"networkx==3.1",
"onnx==1.14.1",
"onnxruntime==1.16.0",
"packaging==23.1",
"pandas==2.0.3",
"Pillow>=10.2.0",
"protobuf==4.24.3",
"psutil==5.9.5",
"py-cpuinfo==9.0.0",
"pyparsing==3.1.1",
"python-dateutil==2.8.2",
"pytz==2023.3.post1",
"PyWavelets==1.4.1",
"PyYAML==6.0.1",
"requests==2.31.0",
"scikit-image==0.21.0",
"scipy==1.10.1",
"seaborn==0.12.2",
"six==1.16.0",
"sympy==1.12",
"tifffile==2023.7.10",
"tqdm==4.66.1",
"typing_extensions==4.8.0",
"tzdata==2023.3",
"ultralytics==8.2.48",
"zipp==3.20.2",
]
)