forked from alisaifee/jira-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1011 Bytes
/
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
"""
setup.py for jira-cli
"""
__author__ = "Ali-Akber Saifee"
__email__ = "ali@mig33global.com"
__copyright__ = "Copyright 2013, ProjectGoth"
import os
import sys
from setuptools import setup, find_packages, Command
import jiracli
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(name='jira-cli',
author=__author__,
author_email=__email__,
url="http://github.com/mig33/jira-cli",
license="MIT",
version = jiracli.__version__,
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']),
include_package_data = True,
zip_safe = False,
install_requires =[
'setuptools',
'termcolor'
],
entry_points = {
'console_scripts' : [
'jira-cli = jiracli.cli:main',
]
},
**extra
)