forked from aws-ia/taskcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·56 lines (53 loc) · 1.78 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
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup
with open("requirements.txt", encoding="utf-8") as f:
REQUIRED = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
with open("VERSION", "r", encoding="utf-8") as fh:
VERSION = fh.read()
setup(
version=VERSION,
name="taskcat",
packages=[
"taskcat",
"taskcat._cfn",
"taskcat._cli_modules",
"taskcat.testing",
"taskcat.iam_policy",
"taskcat_plugin_testhook",
],
description="An OpenSource Cloudformation Deployment Framework",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Tony Vattathil, Jay McConnell, Andrew Glenn, Santiago Cardenas, Shivansh "
"Singh",
url="https://aws-ia.github.io/taskcat/",
license="Apache License 2.0",
download_url="https://github.com/aws-ia/taskcat/tarball/main",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X ",
],
scripts=["bin/taskcat"],
keywords=[
"aws",
"cloudformation",
"cloud",
"cloudformation testing",
"cloudformation deploy",
"taskcat",
],
install_requires=REQUIRED,
test_suite="tests",
tests_require=["boto3"],
include_package_data=True,
)