-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
36 lines (35 loc) · 1.36 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
"""Support library to enable Python-based CloudFormation resource types"""
from setuptools import setup
setup(
name="cloudformation-cli-python-lib",
version="2.1.18",
description=__doc__,
author="Amazon Web Services",
author_email="[email protected]",
url="https://github.com/aws-cloudformation/aws-cloudformation-rpdk-python-plugin/",
packages=["cloudformation_cli_python_lib"],
# package_data -> use MANIFEST.in instead
include_package_data=True,
zip_safe=True,
python_requires=">=3.8",
install_requires=[
"boto3>=1.34.6",
],
license="Apache License 2.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"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",
],
keywords="Amazon Web Services AWS CloudFormation",
)