-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.01 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 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.drone_controller_utility',
'pyrep.robots',
'pyrep.robots.arms',
'pyrep.robots.end_effectors',
'pyrep.robots.mobiles',
'pyrep.robots.configuration_paths',
'pyrep.textures',
'pyrep.misc',
'pyrep.envs',
'pyrep.common',
'tests',
'tests.assets'
# 'pyrep.core'
],
ext_modules=[cffi_build.ffibuilder.distutils_extension(
join('build', 'pyrep', 'backend'))],
)