-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 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
#!/usr/bin/python
from distutils.core import setup
from issue import VERSION
with open('README.rst') as file:
long_description = file.read()
setup(
name = "issue",
version = VERSION,
description = "Simple issue tracker to use with VCS",
long_description = long_description,
author = "Lauri Hakko",
author_email = "lauri.hakko@gmail.com",
url = "https://github.com/boarpig/issue",
scripts=['issue.py'],
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Software Development :: Bug Tracking',
'Topic :: Utilities'
]
)