-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
45 lines (39 loc) · 1.29 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
"""A setuptools based setup module."""
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mano_pybullet',
version='0.1.0',
description='MANO-based hand models for the PyBullet simulator.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ikalevatykh/mano_pybullet',
author='Igor Kalevatykh',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
],
keywords='PyBullet MANO VR robotics',
python_requires='>=3.6',
packages=find_packages(),
install_requires=[
'numpy',
'chumpy',
'transforms3d',
'pybullet>=3.0.6',
],
extras_require={
'gym': ['gym>=0.17.3', 'imageio']
}
)