forked from Phylliade/ikpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 697 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
setup(name='ikpy',
version='2.2.3',
author="Pierre Manceron",
description="An inverse kinematics library aiming performance and modularity",
url="https://github.com/Phylliade/ikpy",
license="GNU GENERAL PUBLIC LICENSE Version 3",
packages=['ikpy'],
package_dir={'': 'src'},
setup_requires=['numpy'],
install_requires=['numpy', 'scipy', 'sympy'],
extras_require={
'plot': ["matplotlib"],
},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
)