forked from ryansb/cfn-wrapper-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (38 loc) · 1.3 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
# -*- coding:utf-8 -*-
from __future__ import absolute_import
import codecs
from setuptools import setup
with codecs.open('README.rst') as readme_file:
readme = readme_file.read()
with codecs.open('HISTORY.rst') as history_file:
history = history_file.read()
setup(
name='cfn-resource-timeout',
version='1.2.0',
description=(
'Wrapper decorators for building CloudFormation custom resources'
),
long_description=readme + '\n\n' + history,
url='https://github.com/timeoutdigital/cfn-resource-timeout',
author='Ryan Scott Brown',
author_email='[email protected]',
maintainer='Adam Johnson',
maintainer_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='cloudformation aws cloud custom resource amazon',
py_modules=["cfn_resource"],
install_requires=["requests"],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
package_data={},
data_files=[],
entry_points={},
)