-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (59 loc) · 1.71 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
# -*- encoding: utf-8 -*-
import os
from setuptools import setup, find_packages
__author__ = 'andyfase'
__date__ = '04-Dec-2023'
# here = os.path.abspath(os.path.dirname(__file__))
long_description = open('README.md').read()
install_requires = [
'backoff>2.2',
'boto3>1.29',
'botocore>1.32',
'click>8',
'click-completion>0.5',
'colorama>0.4',
'jsonschema>4',
'pyyaml>6',
's3transfer>=0.7'
]
setup(
# Project Name
name='cfncli',
# Version and description
version='0.1.0',
description='CloudFormation CLI Wrapper',
long_description=long_description,
long_description_content_type='text/markdown',
# Author details
author='Fase, Andy',
author_email='[email protected]',
# Project home
url='https://github.com/andyfase/cfncli',
# License detail
license='MIT',
# Classification and Keywords
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'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 cloudformation changeset sam serverless',
python_requires='>=3.7',
packages=find_packages(exclude=['tests.*', 'tests']),
package_data={
'cfncli.config': ['*.json', '*.yaml']
},
install_requires=install_requires,
entry_points='''
[console_scripts]
cfn-cli=cfncli.__main__:main
cfn=cfncli.__main__:main
''',
)