-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·55 lines (49 loc) · 1.34 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
from setuptools import setup, find_packages
version = "1.0.1"
long_description = ""
try:
long_description = file('README.rst').read()
except Exception:
pass
license = ""
try:
license = file('LICENSE').read()
except Exception:
pass
setup(
name='redmine-cmd',
version=version,
description='redmine-cmd.cfg.example',
author='Pablo Saavedra',
author_email='[email protected]',
url='http://github.com/psaavedra/redmine-cmd',
packages=find_packages(),
package_data={
},
scripts=[
"tools/redmine-cmd",
],
zip_safe=False,
install_requires=[
"httplib2",
"simplejson",
"texttable",
"slugify"
],
data_files=[
('/usr/share/doc/redmine-cmd/', ['cfg/redmine_cmd.cfg.example']),
# ('/etc/init.d', ['init-script'])
],
download_url='https://github.com/psaavedra/redmine-cmd/zipball/master',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description=long_description,
license=license,
keywords="python redmine cmd tracker",
)