-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
executable file
·40 lines (36 loc) · 1.04 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='cloud_formation_viz',
version='0.0.1',
description='Visualise cloudformation templates',
long_description=open("README.md").read(),
license='MIT',
author='Ben Butler-Cole',
author_email='[email protected]',
url='https://github.com/benbc/cloud-formation-viz',
packages=find_packages(exclude=['tests']),
entry_points={
"console_scripts": [
"cfviz=cloud_formation_viz.main:main"
]
},
python_requires='>=3.7',
install_requires=[
"pyyaml"
],
classifiers=[
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta"
],
include_package_data=True,
zip_safe=False,
keywords=[
'yaml', 'json', 'cloudformation', 'graphviz', 'dot'
]
)