-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1.06 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
from distutils.core import setup
import sys
sys.path.insert(0, 'src')
from cqlug_demo import __version__
# Only if you use restructured text in the readme (http://docutils.sourceforge.net/rst.html)
#with open('README.txt') as file:
# long_description = file.read()
setup(name='cqlug_demo',
version= __version__,
packages=['cqlug_demo'],
package_dir = {'':'src'},
scripts = ["scripts/hello","scripts/hello.bat","scripts/create-doku-page"],
package_data = {'cqlug_demo': [
'templates/doku.txt'
]},
author = "Daniel Stonier",
author_email = "[email protected]",
url = "http://pypi.python.org/pypi/cqlug_demo/",
download_url = "https://github.com/stonier/cqlug_demo.git",
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License" ],
keywords = ["ROS"],
description = "Demo package for the cqlug demo, August 2012",
long_description = "Refer to the documentation at https://github.com/stonier/cqlug-demo.",
license = "BSD"
)