-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 968 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
31
32
33
34
35
36
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='CoordinateTransformations',
version='0.9.0',
packages=['CoordinateTransformations'],
long_description=readme(),
long_description_content_type='text/markdown',
url='',
author='Parth Viradiya',
author_email='parthviradiya08@gmail.com',
license='MIT',
classfiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
'License :: OSI Approved :: MIT License',
],
keywords=[
'robotics', 'coordinate transformations', 'robot kinematics',
],
install_requires = [
"numpy > 1.5",
],
extras_require = {
"dev": [
"pytest >= 3.7",
],
},
)