forked from stepjam/PyRep
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
24 lines (23 loc) · 795 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
from distutils.core import setup
import cffi_build.cffi_build as cffi_build
from os.path import join
setup(name='PyRep',
version='1.0',
description='Python V-Rep wrapper',
author='Stephen James',
author_email='slj12@ic.ac.uk',
url='https://www.doc.ic.ac.uk/~slj12',
packages=['pyrep',
'pyrep.backend',
'pyrep.objects',
'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'))],
)