-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (49 loc) · 1.6 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = 'MIME E-mail forwarding script for Slack written in Python'
setup(
name='email2slack',
version='1.0.0-alpha6',
description='MIME E-mail forwarding script for Slack written in Python',
long_description=long_description,
url='https://github.com/mikoim/email2slack',
author='Eshin Kunishima',
author_email='ek@esh.ink',
packages=['email2slack'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Communications',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Communications :: Chat',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='email slack forwarding',
install_requires=[
'beautifulsoup4>=4.6.0,<5',
'requests>=2.18.2,<3',
'html5lib==1.0.1'
],
extras_require={
'test': ['pytest'],
'lxml': ['lxml>=4.1.1,<4.4.0'],
'nkf': ['nkf==0.2.0']
},
entry_points={
'console_scripts': [
'email2slack = email2slack:main',
],
},
)