-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (27 loc) · 801 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
from setuptools import setup
version = open('VERSION').read()
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
description = open('README.md').read()
setup(
packages = ['anti_forgetful'],
install_requires = ['boto3'],
zip_safe = False,
entry_points = {
'console_scripts': [
'anti_forgetful = anti_forgetful.launch:main',
'awsterminate = anti_forgetful.terminate:main'
]
},
name = 'anti_forgetful',
version = version,
description = '',
long_description = description,
url = 'https://github.com/tbenthompson/anti_forgetful',
author = 'T. Ben Thompson',
author_email = '[email protected]',
license = 'MIT',
platforms = ['any']
)