-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
47 lines (42 loc) · 1.35 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
45
46
47
"""Packaging settings."""
from os.path import abspath, dirname, join, isfile
from setuptools import setup
from former import __version__
this_dir = abspath(dirname(__file__))
path = join(this_dir, 'README.rst')
long_description = ''
if isfile(path):
with open(path) as file:
long_description = file.read()
setup(
name='former',
version=__version__,
description='Create AWS CloudFormation yml for any resource',
long_description=long_description,
url='https://github.com/flomotlik/former',
author='Florian Motlik',
author_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: Public Domain',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
keywords='cloudformation, aws, cloud',
packages=['former'],
install_requires=['requests', 'pyyaml'],
entry_points={
'console_scripts': [
'former=former.cli:main',
],
}
)