-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
42 lines (37 loc) · 1.15 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup
import sys
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="catkin_doc",
description="Generate ROS API documentation of catkin package",
long_description=read("README.md"),
author="Felix Mauch, Lena Holoch",
author_email="mauch@fzi.de",
license="BSD",
keywords=["catkin", "ROS"],
packages=["catkin_doc"],
package_dir={"": "src"},
scripts=["bin/catkin_doc"],
version=0.1,
install_requires=["markdown-strings", "python-magic"],
# test_suite = "nose.collector",
# classifiers = [
# "Development Status :: 5 - Production/Stable",
# "Intended Audience :: Developers",
# "License :: OSI Approved :: BSD License",
# "Topic :: Software Development :: Quality Assurance",
# "Environment :: Console",
# "Operating System :: OS Independent",
# "Programming Language :: Python",
# "Programming Language :: Python :: 3"
# ],
# entry_points = {
# "catkin_tools.commands.catkin.verbs": [
# "lint = catkin_lint.main:description",
# ],
# },
)