-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1.33 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
#!/usr/bin/env python
"""setup.py: distutils/setuptools install script."""
from setuptools import setup
REQUIRES = []
try:
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
except FileNotFoundError:
LONG_DESCRIPTION = ""
setup(
name="amazon-api-gateway-secure-authorizer",
version="0.1.0",
author="Efficient Solutions LLC",
author_email="contact@efficient.solutions",
description="Secure Lambda authorizer for HTTP API behind CloudFront",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/efficient-solutions/amazon-api-gateway-secure-authorizer",
packages=["secure_authorizer"],
license="MIT",
install_requires=REQUIRES,
python_requires=">= 3.10",
keywords=[
"Amazon API Gateway", "Amazon CloudFront", "AWS Lambda", "AWS Secrets Manager"
],
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
)