forked from ekmartin/slack-pull-reminder
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 664 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 664 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
with open('README.rst', 'rb') as f:
readme = f.read().decode('utf-8')
setup(
name='slack-pull-reminder',
version='0.1.4',
url='http://github.com/ekmartin/slack-pull-reminder',
author='Martin Ek',
author_email='mail@ekmartin.com',
description='Posts a Slack reminder with a list of open pull requests for an organization',
long_description=readme,
py_modules=['slack_pull_reminder'],
license='MIT',
install_requires=[
'requests==2.21.0',
'github3.py==1.2.0'
],
entry_points='''
[console_scripts]
slack-pull-reminder=slack_pull_reminder:cli
'''
)