-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·43 lines (41 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='catkin-sphinx',
version='0.3.2',
packages=['catkin_sphinx'],
package_data={
'catkin_sphinx': [
'theme/ros-theme/theme.conf',
'theme/ros-theme/static/sphinxdoc.css',
'theme/ros-theme/static/pygments.css'
]
},
package_dir={'catkin_sphinx': 'src/catkin_sphinx'},
author = "Troy Straszheim, Issac Trotts, William Woodall",
maintainer="ROS Infrastructure Team",
project_urls={
'Source code':
'https://github.com/ros-infrastructure/catkin-sphinx',
'Issue tracker':
'https://github.com/ros-infrastructure/catkin-sphinx/issues',
},
url="http://www.ros.org/",
download_url="http://pr.willowgarage.com/downloads/catkin_sphinx/",
keywords=["ROS"],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License"
],
description="Sphinx extension for Catkin projects",
long_description="Sphinx extension for Catkin projects that provides a "
"custom ROS theme and a Sphinx domain for cmake.",
license="BSD",
extras_require={
'test': [
'pytest',
'sphinx',
],
},
)