-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
47 lines (42 loc) · 1.54 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
"""
Flask-AtlassianConnect
----------------------
This is a simple module to make creating atlassian connect based
plugins easier
See https://halkeye.github.io/flask_atlassian_connect/ for docs
"""
import io
import re
from setuptools import find_packages, setup
init_py = io.open('flask_atlassian_connect/__init__.py').read()
metadata = dict(re.findall("__([a-z]+)__ = '([^']+)'", init_py))
setup(
name='Flask-AtlassianConnect',
version=metadata['version'],
description="Atlassian Connect Helper",
long_description=__doc__,
author=metadata['author'],
author_email=metadata['email'],
url=metadata['url'],
license=open('LICENSE.md').read(),
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=io.open('requirements/runtime.txt').readlines(),
setup_requires=['pytest-runner'],
keywords=['atlassian connect', 'flask', 'jira', 'confluence'],
tests_require=[x for x in io.open(
'requirements/dev.txt').readlines() if not x.startswith('-')],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: PyPy",
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)