forked from HermanThijs/jiracli
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·39 lines (36 loc) · 1.08 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
with open(os.path.join(os.path.dirname(__file__), "README.rst"), "r") as f:
long_desc = "".join(f.readlines())
setup(
name="jiracli",
version="0.4.1",
packages=find_packages(),
scripts=['jiracli'],
package_data={
'': ['README.rst', 'LICENSE'],
},
install_requires=[
'jira-python>=0.13',
'termcolor',
'setuptools',
'tabulate',
],
author="Thomas Bechtold",
author_email="[email protected]",
description="command line interface for jira",
long_description=long_desc,
license="GPL-3",
keywords="jira cli atlassian REST",
url="https://github.com/toabctl/jiracli",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Utilities",
],
)