-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 670 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 670 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
setup(
name='slack-email-digest',
version='0.1',
author='Claudiu Saftoiu',
author_email='csaftoiu@gmail.com',
description='Export Slack history as a rich HTML email message',
url='https://github.com/csaftoiu/slack-email-digest',
install_requires=[
'slacker(>=0.9.24)',
'schema(>=0.6.2)',
'jinja2(>=2.8)',
'pytz(>=2016.6.1)',
'tzlocal(>=1.2.2)',
'emoji(>=0.3.9)',
'pyshorteners(>=0.6.0)',
'docoptcfg(>=1.0.2)',
'clint(>=0.5.1)',
'python-postmark(>=0.4.3)',
],
packages=[],
scripts=['scripts/slack-email-digest.py'],
)