-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
33 lines (32 loc) · 816 Bytes
/
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
from setuptools import setup
setup(
name="strike_with_a_pose",
version="0.3.0",
url="http://github.com/airalcorn2/strike-with-a-pose",
author="Michael A. Alcorn",
author_email="[email protected]",
packages=["strike_with_a_pose"],
install_requires=[
"moderngl>=5.4.2",
"numpy>=1.15.4",
"objloader>=0.2.0",
"opencv-python>=3.4.3",
"Pillow>=5.3.0",
"PyOpenGL>=3.1.0",
"PyQt5>=5.11.3",
"pyrr>=0.9.2",
"scipy>=1.1.0",
"torch>=0.4.1",
"torchvision>=0.2.1",
],
package_data={
"strike_with_a_pose": [
"data/*",
"scene_files/*",
"about.html",
"instructions.html",
]
},
scripts=["run/strike-with-a-pose"],
zip_safe=False,
)