forked from aws-ia/taskcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.49 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
from setuptools import setup
import datetime
import unittest
import os
with open('requirements.txt') as f:
required = f.read().splitlines()
def test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover('tests/unittest', pattern='test_*.py')
return test_suite
setup(
name='taskcat',
packages=['taskcat'],
description='An OpenSource Cloudformation Deployment Framework',
author='Tony Vattathil, Santiago Cardenas, Shivansh Singh, Jay McConnell, Andrew Glenn' ,
author_email='tonynv@amazon.com, sancard@amazon.com, sshvans@amazon.com, jmmccon@amazon.com, andglenn@amazon.com',
url='https://aws-quickstart.github.io/taskcat/',
license='Apache License 2.0',
download_url='https://github.com/aws-quickstart/taskcat/tarball/master',
version = '0.8.23',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
],
scripts=[
'bin/taskcat',
'bin/alchemist'
],
keywords=['aws', 'cloudformation', 'cloud', 'cloudformation testing', 'cloudformation deploy', 'taskcat'],
install_requires=required,
test_suite='setup.test_suite',
include_package_data=True
)