-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (58 loc) · 1.78 KB
/
setup.py
File metadata and controls
70 lines (58 loc) · 1.78 KB
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
# -*- 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 = open('README.md').read()
install_requires = [
'botocore>=1.17,<2',
'boto3>=1.14,<2',
'awscli>=1.18,<2',
'click>=7.0,<8',
'click_completion==0.5.2',
'PyYAML>=5,<6',
'jsonschema>=3,<6',
'backoff>=1.10.0,<2'
]
setup(
# Project Name
name='awscfncli2',
# Version and description
version='3.1.1',
description='AWS CloudFormation CLI',
long_description=long_description,
long_description_content_type='text/markdown',
# Author details
author='Kotaimen, Ray',
author_email='kotaimen.c@gmail.com, gliese.q@gmail.com',
# Project home
url='https://github.com/Kotaimen/awscfncli',
# License detail
license='MIT',
# Classification and Keywords
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Internet',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
],
keywords='aws cfn cli awscfncli cloudformation changeset sam serverless',
python_requires='>=3.7',
packages=find_packages(exclude=['tests.*', 'tests']),
package_data={
'awscfncli2.config': ['*.json', '*.yaml']
},
install_requires=install_requires,
entry_points='''
[console_scripts]
cfn-cli=awscfncli2.__main__:main
''',
)