forked from stepjam/PyRep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 834 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
from distutils.core import setup
import cffi_build.cffi_build as cffi_build
from os.path import join
setup(name='PyRep',
version='1.1',
description='Python CoppeliaSim wrapper',
author='Stephen James',
author_email='[email protected]',
url='https://www.doc.ic.ac.uk/~slj12',
packages=['pyrep',
'pyrep.backend',
'pyrep.objects',
'pyrep.sensors',
'pyrep.robots',
'pyrep.robots.arms',
'pyrep.robots.end_effectors',
'pyrep.robots.mobiles',
'pyrep.robots.configuration_paths',
'pyrep.textures',
'pyrep.misc',
],
ext_modules=[cffi_build.ffibuilder.distutils_extension(
join('build', 'pyrep', 'backend'))],
)