forked from Kotaimen/awscfncli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
106 lines (77 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# -*- encoding: utf-8 -*-
import os
from setuptools import setup, find_packages
__author__ = 'kotaimen'
__date__ = '22-Feb-2018'
here = os.path.abspath(os.path.dirname(__file__))
long_description = """
AWS CloudFormation CLI
**********************
Introduction
============
``awscfncli`` AWS CloudFormation stack management command line interface.
Features:
* awscli a-like CLI interface.
* Simple YAML stacks configuration file.
* Tracking stack events in the CLI.
* Managing stacks across different stages and accounts.
"""
install_requires = [
'botocore',
'boto3',
'awscli>=1.16.0'
'six>=1.10.0',
'click>=6.0,<8',
'PyYAML>=3.10',
'jsonschema>=2.6.0'
]
test_requires = [
'pytest',
'pytest-cov',
'mock'
]
dev_requires = test_requires
setup(
# Project Name
name='awscfncli2',
# Version and description
version='2.1.19',
description='AWS CloudFormation CLI',
long_description=long_description,
# Author details
author='Kotaimen, Ray',
author_email='[email protected], [email protected]',
# Project home
url='https://github.com/Kotaimen/awscfncli',
# License detail
license='MIT',
# Classification and Keywords
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
keywords='awscfncli awscfncli2 aws cfn cli cloudformation stack '
'template changeset commandline development sam serverless',
packages=find_packages(exclude=['tests.*', 'tests']),
package_data={
'awscfncli2.config': ['*.json', '*.yaml']
},
install_requires=install_requires,
extras_require={
'test': test_requires,
'dev': dev_requires
},
entry_points='''
[console_scripts]
cfn-cli=awscfncli2.__main__:main
''',
)