-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (52 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
from cati_portal import __version__
from cati_portal import __author__
from cati_portal import __email__
from cati_portal import __license__
def readme():
with open('README.txt') as f:
return f.read()
def changes():
with open('CHANGES.txt') as f:
return f.read()
setup(
name='cati_portal',
version=__version__,
author=__author__,
author_email=__email__,
description='CATI Portal',
long_description=readme() + '\n\n' + changes(),
license=__license__,
url='https://github.com/sapetnioc/cati_portal',
classifiers=[
'Programming Language :: Python',
"Programming Language :: Python :: 3",
'Framework :: Flask',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
keywords='web flask',
packages=find_packages(),
scripts=[
'cati_portal_ctl',
],
include_package_data=True,
zip_safe=False,
install_requires=[
'flask >= 1.0',
'flask-login',
'flask-wtf',
'email-validator',
'psycopg2-binary >= 2.7',
'click >= 5.0',
'gunicorn',
'pgpy',
],
extras_require={
'testing': [
#'WebTest >= 1.3.1', # py3 compat
#'pytest',
#'pytest-cov',
],
},
)