-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 750 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(name='cognises',
version='0.3',
description='Implement application and cloud resource level authorization'
' based on user groups.',
classifiers=[
'Programming Language :: Python :: 2.7'
],
url='https://github.com/plotlabs/cognises.git',
keywords=["aws", "cognito", "security", "authorization", "flask login",
"flask"],
author='Shalini Aggarwal',
author_email='aggarwalshalini1993@gmail.com',
license='LICENSE.txt',
packages=['cognises'],
include_package_data=True,
zip_safe=False,
install_requires=['Flask', 'boto3', 'requests', 'simplejson',
'python-jose']
)