-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 727 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 727 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
25
26
27
from setuptools import setup
with open('requirements.txt', 'rb') as f:
install_requires = f.read().decode('utf-8').split('\n')
with open('README.md', 'rb') as f:
long_description = f.read().decode('utf-8')
setup(
name='pd2slack',
version=0.66,
description='Syncs PD On-call to Slack User Group',
long_description = long_description,
long_description_content_type='text/markdown',
author='Sid Premkumar',
author_email='sid.premkumar@gmail.com',
url='https://github.com/sidpremkumar/pd2slack',
install_requires=install_requires,
packages=[
'pd2slack',
],
entry_points={
'console_scripts': [
'pd2slack=pd2slack.main:main',
],
},
)