-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
79 lines (55 loc) · 2.51 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
"""
This file is part of FINITE STATE MACHINE BASED TESTING.
Copyright(c) <Florian Lier, Norman Koester>
http://opensource.cit-ec.de/fsmt
This file may be licensed under the terms of the
GNU Lesser General Public License Version 3 (the ``LGPL''),
or (at your option) any later version.
Software distributed under the License is distributed
on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
express or implied. See the LGPL for the specific language
governing rights and limitations.
You should have received a copy of the LGPL along with this
program. If not, go to http://www.gnu.org/licenses/lgpl.html
or write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
The development of this software was supported by the
Excellence Cluster EXC 277 Cognitive Interaction Technology.
The Excellence Cluster EXC 277 is a grant of the Deutsche
Forschungsgemeinschaft (DFG) in the context of the German
Excellence Initiative.
Authors: Florian Lier, Simon Schulz
<flier, sschulz>@techfak.uni-bielefeld.de
"""
from setuptools import setup, find_packages
version = "0.1"
filename = "0.1"
setup(name="simplerobotgaze",
version=filename,
description="A Simple script that takes ROS person messages as input and steers a "
"humanoid robot head using the HLRC client",
long_description="A Simple script that takes ROS person messages as input and steers a "
"humanoid robot head using the HLRC client",
author="Florian Lier, Simon Schulz",
author_email="flier[at]techfak.uni-bielefeld.de and sschulz[at]techfak.uni-bielefeld.de",
url="https://projects.cit-ec.uni-bielefeld.de/git/flobi.demo.git",
download_url="https://projects.cit-ec.uni-bielefeld.de/git/flobi.demo.git",
scripts=["bin/simple_robot_gaze"],
packages=find_packages(exclude=["*.tests",
"*.tests.*",
"tests.*",
"tests"]),
keywords=['HLRC', 'Robot Gaze'],
license="LGPLv3",
classifiers=[
'Development Status :: Beta',
'Environment :: Console',
'Environment :: Robotics',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or ' +
'Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Markup :: XML'
],
)