2017-11-25 22:51:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2020-02-01 18:59:03 +01:00
|
|
|
# Copyright (C) 2020 Chris Caron <lead2gold@gmail.com>
|
2019-02-01 03:05:56 +01:00
|
|
|
# All rights reserved.
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# This code is licensed under the MIT License.
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files(the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions :
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2019-02-01 03:05:56 +01:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
2017-11-25 22:51:46 +01:00
|
|
|
|
|
|
|
import os
|
2018-07-01 18:40:56 +02:00
|
|
|
import platform
|
2017-11-25 22:51:46 +01:00
|
|
|
try:
|
|
|
|
from setuptools import setup
|
2017-11-29 05:14:51 +01:00
|
|
|
|
2017-11-25 22:51:46 +01:00
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
from setuptools import find_packages
|
2019-06-01 03:41:17 +02:00
|
|
|
|
|
|
|
cmdclass = {}
|
|
|
|
try:
|
|
|
|
from babel.messages import frontend as babel
|
|
|
|
cmdclass = {
|
|
|
|
'compile_catalog': babel.compile_catalog,
|
|
|
|
'extract_messages': babel.extract_messages,
|
|
|
|
'init_catalog': babel.init_catalog,
|
|
|
|
'update_catalog': babel.update_catalog,
|
|
|
|
}
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2017-11-25 22:51:46 +01:00
|
|
|
|
|
|
|
install_options = os.environ.get("APPRISE_INSTALL", "").split(",")
|
2018-07-01 18:40:56 +02:00
|
|
|
install_requires = open('requirements.txt').readlines()
|
|
|
|
if platform.system().lower().startswith('win'):
|
|
|
|
# Windows Notification Support
|
|
|
|
install_requires += open('win-requirements.txt').readlines()
|
|
|
|
|
2017-11-25 22:51:46 +01:00
|
|
|
libonly_flags = set(["lib-only", "libonly", "no-cli", "without-cli"])
|
|
|
|
if libonly_flags.intersection(install_options):
|
|
|
|
console_scripts = []
|
2018-03-14 00:26:51 +01:00
|
|
|
|
2017-11-25 22:51:46 +01:00
|
|
|
else:
|
2018-03-14 00:26:51 +01:00
|
|
|
# Load our CLI
|
|
|
|
console_scripts = ['apprise = apprise.cli:main']
|
2017-11-25 22:51:46 +01:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='apprise',
|
2020-03-30 23:07:48 +02:00
|
|
|
version='0.8.5',
|
2019-02-16 21:54:03 +01:00
|
|
|
description='Push Notifications that work with just about every platform!',
|
2019-02-01 03:05:56 +01:00
|
|
|
license='MIT',
|
2019-02-05 02:28:03 +01:00
|
|
|
long_description=open('README.md').read(),
|
|
|
|
long_description_content_type='text/markdown',
|
2019-06-01 03:41:17 +02:00
|
|
|
cmdclass=cmdclass,
|
2017-11-25 22:51:46 +01:00
|
|
|
url='https://github.com/caronc/apprise',
|
2019-09-07 01:41:23 +02:00
|
|
|
keywords='Push Notifications Alerts Email AWS SNS Boxcar ClickSend '
|
|
|
|
'Discord Dbus Emby Faast Flock Gitter Gnome Gotify Growl IFTTT Join '
|
2020-03-31 02:13:35 +02:00
|
|
|
'Kavenegar KODI Kumulos MacOS Mailgun Matrix Mattermost MessageBird '
|
2020-05-04 03:34:15 +02:00
|
|
|
'MSG91 Nexmo Nextcloud Notica Notifico Office365 Prowl PushBullet '
|
|
|
|
'Pushjet Pushed Pushover PushSafer Rocket.Chat Ryver SendGrid '
|
|
|
|
'SimplePush Sinch Slack Stride Syslog Techulus Push Telegram Twilio '
|
|
|
|
'Twist Twitter XBMC Microsoft MSTeams Windows Webex CLI API',
|
2017-11-25 22:51:46 +01:00
|
|
|
author='Chris Caron',
|
|
|
|
author_email='lead2gold@gmail.com',
|
|
|
|
packages=find_packages(),
|
|
|
|
package_data={
|
2017-12-03 08:00:23 +01:00
|
|
|
'apprise': [
|
|
|
|
'assets/NotifyXML-1.0.xsd',
|
|
|
|
'assets/themes/default/*.png',
|
2018-07-01 18:40:56 +02:00
|
|
|
'assets/themes/default/*.ico',
|
2019-05-30 02:07:05 +02:00
|
|
|
'i18n/*.py',
|
|
|
|
'i18n/*/LC_MESSAGES/*.mo',
|
2017-12-03 08:00:23 +01:00
|
|
|
],
|
2017-11-25 22:51:46 +01:00
|
|
|
},
|
2018-07-01 18:40:56 +02:00
|
|
|
install_requires=install_requires,
|
2017-11-25 22:51:46 +01:00
|
|
|
classifiers=(
|
2018-01-01 16:45:36 +01:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2017-11-25 22:51:46 +01:00
|
|
|
'Intended Audience :: Developers',
|
2019-02-16 21:54:03 +01:00
|
|
|
'Intended Audience :: System Administrators',
|
2017-11-25 22:51:46 +01:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
2017-12-03 08:00:23 +01:00
|
|
|
'Programming Language :: Python :: 3',
|
2019-02-01 03:05:56 +01:00
|
|
|
'License :: OSI Approved :: MIT License',
|
2019-04-26 01:46:24 +02:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
2017-11-25 22:51:46 +01:00
|
|
|
),
|
|
|
|
entry_points={'console_scripts': console_scripts},
|
2017-12-03 08:00:23 +01:00
|
|
|
python_requires='>=2.7',
|
2019-05-30 02:07:05 +02:00
|
|
|
setup_requires=['pytest-runner', 'babel', ],
|
2018-03-12 01:14:29 +01:00
|
|
|
tests_require=open('dev-requirements.txt').readlines(),
|
2017-11-25 22:51:46 +01:00
|
|
|
)
|