2017-11-25 22:51:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# SetupTools Script
|
|
|
|
#
|
2018-03-12 00:57:07 +01:00
|
|
|
# Copyright (C) 2017-2018 Chris Caron <lead2gold@gmail.com>
|
2017-11-25 22:51:46 +01:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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',
|
2018-10-15 02:13:14 +02:00
|
|
|
version='0.5.2',
|
2017-11-30 02:13:18 +01:00
|
|
|
description='A universal notification service',
|
2017-11-25 22:51:46 +01:00
|
|
|
license='GPLv3',
|
2018-03-12 00:57:07 +01:00
|
|
|
long_description=open('README').read(),
|
2017-11-25 22:51:46 +01:00
|
|
|
url='https://github.com/caronc/apprise',
|
|
|
|
keywords='push notifications email boxcar faast growl Join KODI '
|
2018-05-22 19:21:47 +02:00
|
|
|
'Mattermost Prowl Pushalot PushBullet Pushjet '
|
2018-03-12 00:57:07 +01:00
|
|
|
'Pushover Rocket.Chat Slack Toasty Telegram Twitter XBMC Stride '
|
2018-03-12 01:14:29 +01:00
|
|
|
'Emby IFTTT Discord',
|
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',
|
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',
|
|
|
|
'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',
|
2017-11-25 22:51:46 +01:00
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
),
|
|
|
|
entry_points={'console_scripts': console_scripts},
|
2017-12-03 08:00:23 +01:00
|
|
|
python_requires='>=2.7',
|
|
|
|
setup_requires=['pytest-runner', ],
|
2018-03-12 01:14:29 +01:00
|
|
|
tests_require=open('dev-requirements.txt').readlines(),
|
2017-11-25 22:51:46 +01:00
|
|
|
)
|