2017-11-25 22:51:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# SetupTools Script
|
|
|
|
#
|
|
|
|
# Copyright (C) 2017 Chris Caron <lead2gold@gmail.com>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
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(",")
|
|
|
|
libonly_flags = set(["lib-only", "libonly", "no-cli", "without-cli"])
|
|
|
|
if libonly_flags.intersection(install_options):
|
|
|
|
console_scripts = []
|
|
|
|
else:
|
|
|
|
console_scripts = ['apprise = apprise:_main']
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='apprise',
|
|
|
|
version='0.0.1',
|
|
|
|
description='A friendly notification hub',
|
|
|
|
license='GPLv3',
|
|
|
|
long_description=open('README.md').read(),
|
|
|
|
url='https://github.com/caronc/apprise',
|
|
|
|
keywords='push notifications email boxcar faast growl Join KODI '
|
|
|
|
'Mattermost NotifyMyAndroid Prowl Pushalot PushBullet Pushjet '
|
|
|
|
'Pushover Rocket.Chat Slack Toasty Telegram Twitter XBMC ',
|
|
|
|
author='Chris Caron',
|
|
|
|
author_email='lead2gold@gmail.com',
|
|
|
|
packages=find_packages(),
|
2017-11-29 05:14:51 +01:00
|
|
|
include_package_data=True,
|
2017-11-25 22:51:46 +01:00
|
|
|
package_data={
|
2017-11-29 05:14:51 +01:00
|
|
|
'apprise': ['assets'],
|
2017-11-25 22:51:46 +01:00
|
|
|
},
|
2017-11-29 05:14:51 +01:00
|
|
|
scripts=['cli/notify.py', ],
|
2017-11-25 22:51:46 +01:00
|
|
|
install_requires=open('requirements.txt').readlines(),
|
|
|
|
classifiers=(
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
|
|
),
|
|
|
|
entry_points={'console_scripts': console_scripts},
|
|
|
|
python_requires='>=2.7, <3',
|
2017-11-29 05:14:51 +01:00
|
|
|
test_suite='nose.collector',
|
|
|
|
tests_require=['nose', 'coverage', 'pycodestyle'],
|
2017-11-25 22:51:46 +01:00
|
|
|
)
|