-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 882 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
from setuptools import setup
# from distutils.core import setup
setup(name='planarobot',
packages=['planarobot'],
version='0.0.6',
description='Basic planar robotic arm with arbitrary number of links',
author='Theodore Tsitsimis',
author_email='th.tsitsimis@gmail.com',
url='https://github.com/tsitsimis/planar-robot',
download_url='https://github.com/tsitsimis/planarobot/archive/0.0.6.tar.gz',
keywords=['robotics', 'simulation', 'path-planning'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=[
'numpy',
],
zip_safe=False
)