-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 735 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
from pathlib import Path
setuptools.setup(
name='gym_panda',
author="Mahyar Abdeetedal",
author_email="mahyar.etedal@icloud.com",
version='0.0.6',
description="An OpenAI Gym Env for Panda",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/mahyaret/gym-panda",
packages=setuptools.find_packages(include="gym_panda*"),
install_requires=['gym', 'pybullet', 'numpy'], # And any other dependencies foo needs
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6'
)