forked from CentralLabFacilities/rct-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.42 KB
/
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
from setuptools import setup, find_packages
import os
# Determine version
version_file = os.path.realpath(__file__)
version_file = os.path.join(version_file[:version_file.rfind("/")], "VERSION")
version = open(version_file).read().strip()
setup(name="rct-python",
version=version,
description="Robotics Coordinate Transform (python).",
long_description="This library wraps the functionality of the tf2 library (originated from ROS) and supports communication over the RSB middleware. The ROS dependencies are minimised as good as possible.",
author="Norman Koester",
author_email="nkoester[at]techfak.uni-bielefeld.de",
url="TODO",
download_url="TODO",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
keywords=['transformation', 'coordinates', 'tf', 'tf2', 'rsb'],
license="LGPLv3",
classifiers=[
'Development Status :: Beta',
'Environment :: Console',
'Environment :: Robotics/Cognitive Systems',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: Linux',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: XML'
],
# 'Louie', 'suds', 'restlib',
install_requires=['pyrr', "rsb-python>=0.11", "rstconverters>=0.11"])