forked from tehsmyers/cfn-pyplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.21 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
from setuptools import setup
import cfn_pyplates
setup(
name='cfn-pyplates',
version=cfn_pyplates.__version__,
author='Sean Myers',
author_email='[email protected]',
url='https://github.com/seandst/cfn-pyplates',
packages=['cfn_pyplates'],
description='Amazon Web Services CloudFormation template generator',
long_description=open('README.rst').read(),
install_requires=[
'distribute',
'docopt',
'ordereddict',
'pyyaml',
'schema',
'semantic-version',
],
test_suite = 'tests',
# Used for setup.py test, keep in sync with test-requirements.txt
tests_require = ['mock', 'unittest2'],
entry_points={
'console_scripts': [
'cfn_py_generate = cfn_pyplates.cli:generate',
],
},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
],
)