-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 742 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from distutils.core import setup
import os
import subprocess
"""
if os.path.exists("debian/changelog"):
output=subprocess.check_output("parsechangelog | grep Version", shell=True)
version = output.split(":")[1].strip()
"""
setup(name = "ros-system-tools",
# version = version,
version = "0.0.1",
description = "System level ROS Tools",
author = "I Heart Engineering",
author_email = "code@iheartengineering.com",
url = "http://www.iheartengineering.com",
license = "BSD-3-clause",
scripts = ["ros-network-id","rosmetalaunch"],
data_files=[('/etc/init', ["ros-launch.conf"]),
],
long_description = """These tools provide system support for ROS."""
#classifiers = []
)