2017-11-25 22:51:46 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-10-13 23:08:01 +02:00
|
|
|
# BSD 2-Clause License
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# Apprise - Push Notification Library.
|
2024-01-27 21:35:11 +01:00
|
|
|
# Copyright (c) 2024, Chris Caron <lead2gold@gmail.com>
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer.
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
|
|
# and/or other materials provided with the distribution.
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
2023-02-09 09:54:55 +01:00
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
2017-11-25 22:51:46 +01:00
|
|
|
|
2022-05-11 17:09:50 +02:00
|
|
|
import re
|
2017-11-25 22:51:46 +01:00
|
|
|
import os
|
2018-07-01 18:40:56 +02:00
|
|
|
import platform
|
2022-10-30 21:31:57 +01:00
|
|
|
import sys
|
|
|
|
|
2022-10-08 02:28:36 +02:00
|
|
|
from setuptools import find_packages, setup
|
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()
|
2022-10-30 21:31:57 +01:00
|
|
|
if platform.system().lower().startswith('win') \
|
|
|
|
and not hasattr(sys, "pypy_version_info"):
|
2018-07-01 18:40:56 +02:00
|
|
|
# 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',
|
2024-07-26 02:19:02 +02:00
|
|
|
version='1.8.1',
|
2019-02-16 21:54:03 +01:00
|
|
|
description='Push Notifications that work with just about every platform!',
|
2023-02-22 23:41:42 +01:00
|
|
|
license='BSD',
|
2022-10-30 21:31:57 +01:00
|
|
|
long_description=open('README.md', encoding="utf-8").read(),
|
2019-02-05 02:28:03 +01:00
|
|
|
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',
|
2022-05-11 17:09:50 +02:00
|
|
|
keywords=' '.join(re.split(r'\s+', open('KEYWORDS').read())),
|
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': [
|
2021-09-18 21:57:30 +02:00
|
|
|
'assets/NotifyXML-*.xsd',
|
2017-12-03 08:00:23 +01:00
|
|
|
'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',
|
2021-08-15 17:48:28 +02:00
|
|
|
'py.typed',
|
|
|
|
'*.pyi',
|
|
|
|
'*/*.pyi'
|
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,
|
2023-08-22 02:11:26 +02: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',
|
2017-12-03 08:00:23 +01:00
|
|
|
'Programming Language :: Python :: 3',
|
2024-08-23 03:44:14 +02:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2022-10-08 02:28:36 +02:00
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
2022-10-14 22:30:04 +02:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2024-04-14 00:47:43 +02:00
|
|
|
'Programming Language :: Python :: 3.12',
|
2022-10-08 02:28:36 +02:00
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
2023-02-09 09:54:55 +01:00
|
|
|
'License :: OSI Approved :: BSD License',
|
2019-04-26 01:46:24 +02:00
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
|
|
'Topic :: Software Development :: Libraries :: Application Frameworks',
|
2023-08-22 02:11:26 +02:00
|
|
|
],
|
2017-11-25 22:51:46 +01:00
|
|
|
entry_points={'console_scripts': console_scripts},
|
2022-10-08 02:28:36 +02:00
|
|
|
python_requires='>=3.6',
|
2021-05-02 15:47:30 +02:00
|
|
|
setup_requires=['babel', ],
|
2017-11-25 22:51:46 +01:00
|
|
|
)
|