added discord to kw and ref dev-requirements.txt

This commit is contained in:
Chris Caron 2018-03-11 20:14:29 -04:00
parent a559ecb6ea
commit f7877c96da
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
include LICENSE include LICENSE
include README.md include README.md
include README
include requirements.txt include requirements.txt
include dev-requirements.txt
recursive-include test * recursive-include test *
global-exclude *.pyc global-exclude *.pyc
global-exclude __pycache__ global-exclude __pycache__

View File

@ -20,7 +20,7 @@ __title__ = 'apprise'
__version__ = '0.0.7' __version__ = '0.0.7'
__author__ = 'Chris Caron <lead2gold@gmail.com>' __author__ = 'Chris Caron <lead2gold@gmail.com>'
__license__ = 'GPLv3' __license__ = 'GPLv3'
__copywrite__ = 'Copyright 2017 Chris Caron <lead2gold@gmail.com>' __copywrite__ = 'Copyright 2017-2018 Chris Caron <lead2gold@gmail.com>'
from .common import NotifyType from .common import NotifyType
from .common import NOTIFY_TYPES from .common import NOTIFY_TYPES

View File

@ -42,7 +42,7 @@ setup(
keywords='push notifications email boxcar faast growl Join KODI ' keywords='push notifications email boxcar faast growl Join KODI '
'Mattermost NotifyMyAndroid Prowl Pushalot PushBullet Pushjet ' 'Mattermost NotifyMyAndroid Prowl Pushalot PushBullet Pushjet '
'Pushover Rocket.Chat Slack Toasty Telegram Twitter XBMC Stride ' 'Pushover Rocket.Chat Slack Toasty Telegram Twitter XBMC Stride '
'Emby IFTTT', 'Emby IFTTT Discord',
author='Chris Caron', author='Chris Caron',
author_email='lead2gold@gmail.com', author_email='lead2gold@gmail.com',
packages=find_packages(), packages=find_packages(),
@ -67,5 +67,5 @@ setup(
entry_points={'console_scripts': console_scripts}, entry_points={'console_scripts': console_scripts},
python_requires='>=2.7', python_requires='>=2.7',
setup_requires=['pytest-runner', ], setup_requires=['pytest-runner', ],
tests_require=['pytest', 'coverage', 'pytest-cov', 'pycodestyle', 'tox'], tests_require=open('dev-requirements.txt').readlines(),
) )