forked from capless/warrant
-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
38 lines (35 loc) · 1.24 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
from pathlib import Path
from setuptools import setup, find_packages
VERSION = "2024.5.1"
setup(
name="pycognito",
version=VERSION,
description="Python class to integrate Boto3's Cognito client so it is easy to login users. With SRP support.",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
],
download_url="https://github.com/pvizeli/pycognito/tarball/" + VERSION,
keywords="aws,cognito,api,gateway,serverless",
author="Pascal Vizeli",
packages=find_packages(),
url="https://github.com/pvizeli/pycognito",
license="Apache License 2.0",
install_requires=[
"boto3>=1.10.49",
"envs>=1.3",
"pyjwt[crypto]>=2.8.0",
"requests>=2.22.0",
],
include_package_data=True,
python_requires=">=3.8",
zip_safe=True,
)