-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 755 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
""" Setup command """
from setuptools import setup, find_packages
LONG_DESCRIPTION = open('README.md').read()
setup(
name='ssm-cache',
version='2.10',
description='AWS System Manager Parameter Store caching client for Python',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=['aws', 'amazon-web-services', 'aws-lambda', 'aws-ssm', 'parameter-store'],
license="MIT",
author='Alex Casalboni',
author_email='alex@alexcasalboni.com',
url='https://github.com/alexcasalboni/ssm-cache-python',
download_url='https://github.com/alexcasalboni/ssm-cache-python/archive/2.10.tar.gz',
packages=find_packages(exclude=("tests",)),
install_requires=['boto3', 'future'],
)