-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (27 loc) · 1019 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
from setuptools import setup, find_packages
import os
working_directory = os.path.abspath(os.path.dirname(__file__))
"""
Get started using
> python setup.py sdist bdist_wheel
PUBLIC:
> twine upload dist/*
> pip install robotkinematicscatalogue
TEST:
> python -m twine upload --repository pypi dist/*
> pip install -i https://test.pypi.org/simple/ robotkinematicscatalogue
"""
with open(os.path.join(working_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = 'robotkinematicscatalogue',
version='1.1.2',
#url=https://github.com/SaltworkerMLU/RobotKinematicsCatalogue
author='Mathias Lykholt-Ustrup',
author_email='<saltworkermlu@gmail.com>',
description='Closed-form Inverse Kinematic Solutions, Forward Kinematics, and Trajectory Generation in one repository',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['scipy', 'numpy', 'sympy', 'matplotlib']
)