forked from runtheops/ssm-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (27 loc) · 869 Bytes
/
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
#!/usr/bin/env python
from os import path
from setuptools import setup
wd = path.abspath(path.dirname(__file__))
with open(path.join(wd, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
description = 'A tool to manage contents of AWS SSM Parameter Store',
name = 'ssm-diff',
version = '0.5',
author = 'Sergey Motovilovets',
author_email = 'motovilovets.sergey@gmail.com',
license='MIT',
url = 'https://github.com/runtheops/ssm-diff',
download_url = 'https://github.com/runtheops/ssm-diff/archive/0.5.tar.gz',
long_description=long_description,
long_description_content_type='text/markdown',
keywords = ['aws', 'ssm', 'parameter-store'],
packages = ['states'],
scripts=['ssm-diff'],
install_requires=[
'termcolor',
'boto3',
'dpath',
'PyYAML'
]
)