forked from alisaifee/jira-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (40 loc) · 1.29 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
"""
setup.py for jira-cli
"""
__author__ = "Ali-Akber Saifee"
__email__ = "[email protected]"
__copyright__ = "Copyright 2014, Ali-Akber Saifee"
import os
import sys
from setuptools import setup, find_packages
import jiracli
import versioneer
versioneer.versionfile_source = "jiracli/_version.py"
versioneer.versionfile_build = "jiracli/version.py"
versioneer.tag_prefix = ""
versioneer.parentdir_prefix = "jiracli-"
this_dir = os.path.abspath(os.path.dirname(__file__))
REQUIREMENTS = [k for k in open(
os.path.join(this_dir, 'requirements/main.txt')
).read().splitlines() if k
]
setup(name='jira-cli',
author=__author__,
author_email=__email__,
url="http://github.com/alisaifee/jira-cli",
license="MIT",
description = "command line utility for interacting with jira",
long_description = open("README.rst").read(),
classifiers = [k for k in open("CLASSIFIERS").read().split("\n") if k],
packages = find_packages(exclude=['ez_setup','tests']),
include_package_data = True,
zip_safe = False,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires = REQUIREMENTS,
entry_points = {
'console_scripts' : [
'jira-cli = jiracli.interface:cli',
]
},
)