-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 1.11 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
from setuptools import setup
import os
def read(path):
root = os.path.dirname(os.path.abspath(__file__))
return open(os.path.join(root, path)).read()
setup(
name='jira-cache',
description='Dump Jira issues to file and reload them without connection to the original server.',
long_description=read('README.rst'),
url='https://github.com/redtoad/jira-cache',
version='0.8.3',
author='Sebastian Rahlf',
author_email='basti@redtoad.de',
packages=['jira_cache'],
install_requires=['jira'],
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='jira ticket caching json dump'
)