forked from binxio/aws-ssm-copy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·36 lines (29 loc) · 901 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
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''setup.py: setuptools control.'''
import re
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), 'r') as f:
long_description = f.read()
version = "0.4.0"
setup(
name='aws-ssm-copy',
package_dir={'': 'src'},
packages=find_packages(where='src'),
entry_points={
'console_scripts': ['aws-ssm-copy = aws_ssm_copy:main']
},
version=version,
description='Copy AWS Parameter Store parameters',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=['boto3' ],
author='Mark van Holsteijn',
author_email='markvanholsteijn@binx.io',
url='https://github.com/binxio/aws-ssm-copy',
)