-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
32 lines (30 loc) · 991 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
from setuptools import setup
versionfile = 'snooze/version.py'
with open(versionfile, 'rb') as f:
exec(compile(f.read(), versionfile, 'exec'))
setup(
name='github-snooze-button',
version=__version__, # noqa
url='https://github.com/tdsmith/github-snooze-button',
license='MIT',
author='Tim D. Smith',
author_email='[email protected]',
description='Snooze button for Github issues',
packages=['snooze'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5'
],
install_requires=['boto3', 'requests'],
entry_points={
'console_scripts': [
'snooze_listen = snooze.snooze:main',
'snooze_deploy = snooze.deploy_lambda:main',
],
},
)