-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (43 loc) · 1.34 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
from setuptools import find_packages, setup
setup_requires = []
install_requires = [
"natsort",
"numpy",
"psutil",
"scikit-learn",
"torch",
"torchvision",
"tqdm",
"matplotlib",
"albumentations",
'opencv-python-headless<4.3.0;python_version<"3.7"', # because it takes too long to build
'opencv-python-headless;python_version>="3.8"',
'imageio==2.15.0;python_version<"3.7"', # dependency of moviepy
"moviepy",
"PyYAML>=5.1",
"types-PyYAML",
"gdown",
]
extra_all_requires = ["pybullet", "tinyfk<0.6"]
setup(
name="mohou",
version="0.5.11",
description="Visuomotor imitation learning framework",
author="Hirokazu Ishida",
author_email="h-ishida@jsk.imi.i.u-tokyo.ac.jp",
url="https://github.com/HiroIshida/mohou",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
install_requires=install_requires,
extras_require={"all": extra_all_requires},
packages=find_packages(exclude=("tests", "docs")),
package_data={"mohou": ["py.typed"]},
)