forked from theserverlessway/formica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.37 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
"""Packaging settings."""
from os.path import abspath, dirname, join, isfile
from setuptools import setup
from formica import __version__
this_dir = abspath(dirname(__file__))
path = join(this_dir, 'build/README.rst')
long_description = ''
if isfile(path):
with open(path) as file:
long_description = file.read()
setup(
name='formica-cli',
python_requires=">=3.6",
version=__version__,
description='Simple AWS CloudFormation stack management tooling.',
long_description=long_description,
url='https://github.com/flomotlik/formica',
author='Florian Motlik',
author_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='cloudformation, aws, cloud',
packages=['formica'],
install_requires=['boto3>=1.16.22,<2.0.0', 'texttable>=1.2.0,<2.0.0', 'jinja2>=2.10,<3.0', 'pyyaml>=4.2b1',
'deepdiff>=5.0.0', 'arrow>=0.12.1,<1.0.0', 'argcomplete>=1.9.4'],
entry_points={
'console_scripts': [
'formica=formica.cli:formica',
],
}
)