-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
30 lines (29 loc) · 873 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
26
27
28
29
30
from setuptools import setup
setup(
name='ILoSA',
version='0.0.2',
description='Interactive Learning of Stiffness and Attractors',
author='Giovanni Franzese',
author_email='g.franzese@tudelft.nl',
packages=['ILoSA', 'franka_gripper.msg', 'franka_msgs.msg'],
install_requires=[
'matplotlib',
'numpy',
'pandas',
'pynput',
'rospy',
'scikit_learn',
'scipy',
'sensor_msgs'],
# Add other dependencies here
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)