-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
43 lines (38 loc) · 1.27 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
"""
Flask-AWSCognito
-------------
User authentication with AWS Cognito for Flask
"""
from setuptools import setup, find_packages
tests_require = ["pytest", "pytest-mock", "pytest-flask"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Flask-AWSCognito",
version="1.2",
url="https://github.com/cgauge/Flask-AWSCognito/",
license="MIT",
author="CustomerGauge",
author_email="[email protected]",
description="Authenticate users with AWS Cognito",
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=["flask_awscognito"],
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms="any",
install_requires=["Flask", "python-jose", "requests"],
tests_require=[tests_require],
extras_require={"tests": tests_require},
python_requires=">=3.6",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)