-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
29 lines (27 loc) · 1009 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cfnresponse",
version="1.1.5",
author="Amazon Web Services",
description="Send a response object to a custom resource by way of an Amazon S3 presigned URL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/gene1wood/cfnresponse",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules"
],
install_requires=[
'urllib3'
],
project_urls={
"Download": "https://github.com/gene1wood/cfnresponse/archive/refs/tags/v1.1.5.tar.gz",
"Source": "https://github.com/gene1wood/cfnresponse",
},
)