-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
34 lines (32 loc) · 1002 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
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="AutoDH",
version="0.2",
author="Eddie Groshev",
url="https://github.com/edsterg/autodh",
description="Library for automatic extraction of Denavit-Hartenberg parameters",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
keywords="autdh automatic dh denavit-hartenberg robotics robot kinematics ik fk inverse forward",
license="MIT",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests", "tests.*"]),
install_requires=[
"click",
"numpy",
"prettytable",
],
extras_require={
"test": [
"pytest",
"pytest-cov",
"pytest-mock",
],
},
)