Skip to content

Commit 2bc6750

Browse files
authored
Merge pull request #6 from mikoim/feature/bump
bump version to v1.0.0-alpha.4
2 parents 5f84482 + 22de74e commit 2bc6750

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

MANIFEST.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
include LICENSE email2slack
1+
include LICENSE
2+
include README.md
3+
include contrib/*

setup.py

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,21 @@
99

1010
setup(
1111
name='email2slack',
12-
13-
version='1.0.0a3',
14-
12+
version='1.0.0a4',
1513
description='MIME E-mail forwarding script for Slack written in Python',
1614
long_description=long_description,
17-
1815
url='https://github.com/mikoim/email2slack',
19-
2016
author='Eshin Kunishima',
2117
author_email='[email protected]',
22-
18+
packages=['email2slack'],
2319
license='MIT',
24-
2520
classifiers=[
2621
'Development Status :: 3 - Alpha',
27-
2822
'Topic :: Communications',
2923
'Topic :: Communications :: Email',
3024
'Topic :: Communications :: Email :: Mail Transport Agents',
3125
'Topic :: Communications :: Chat',
32-
3326
'License :: OSI Approved :: MIT License',
34-
3527
'Programming Language :: Python',
3628
'Programming Language :: Python :: 2',
3729
'Programming Language :: Python :: 2.7',
@@ -41,11 +33,16 @@
4133
'Programming Language :: Python :: 3.5',
4234
'Programming Language :: Python :: 3.6',
4335
],
44-
4536
keywords='email slack forwarding',
46-
47-
py_modules=['email2slack'],
48-
37+
requires=[
38+
'beautifulsoup4',
39+
'certifi',
40+
'chardet',
41+
'idna',
42+
'lxml',
43+
'requests',
44+
'urllib3',
45+
],
4946
install_requires=[
5047
'beautifulsoup4==4.6.0',
5148
'certifi==2017.4.17',
@@ -55,7 +52,6 @@
5552
'requests==2.18.2',
5653
'urllib3==1.22',
5754
],
58-
5955
entry_points={
6056
'console_scripts': [
6157
'email2slack = email2slack:main',

0 commit comments

Comments
 (0)