Skip to content

Commit

Permalink
Merge pull request #6 from mikoim/feature/bump
Browse files Browse the repository at this point in the history
bump version to v1.0.0-alpha.4
  • Loading branch information
mikoim authored Jul 27, 2017
2 parents 5f84482 + 22de74e commit 2bc6750
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
include LICENSE email2slack
include LICENSE
include README.md
include contrib/*
26 changes: 11 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,21 @@

setup(
name='email2slack',

version='1.0.0a3',

version='1.0.0a4',
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='[email protected]',

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',
Expand All @@ -41,11 +33,16 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],

keywords='email slack forwarding',

py_modules=['email2slack'],

requires=[
'beautifulsoup4',
'certifi',
'chardet',
'idna',
'lxml',
'requests',
'urllib3',
],
install_requires=[
'beautifulsoup4==4.6.0',
'certifi==2017.4.17',
Expand All @@ -55,7 +52,6 @@
'requests==2.18.2',
'urllib3==1.22',
],

entry_points={
'console_scripts': [
'email2slack = email2slack:main',
Expand Down

0 comments on commit 2bc6750

Please sign in to comment.