-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
31 lines (30 loc) · 1.17 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
from setuptools import setup
setup(
name='pyrep',
packages=['pyrep', 'pyrep.vrep'],
version='0.2.0',
description='Simple python binding for V-REP robotics simulator',
url='https://github.com/Troxid/vrep-api-python',
author='troxid',
author_email='[email protected]',
license='MIT',
keywords='vrep robotics simulator binding api',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Games/Entertainment :: Simulation',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython'
],
data_files=[('scenes', ['scenes/Pioneer.ttt', 'scenes/testAllComponents.ttt'])]
)