apprise/setup.py

72 lines
2.4 KiB
Python
Raw Normal View History

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
try:
from setuptools import setup
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',
2018-03-12 00:57:07 +01:00
version='0.0.7',
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 '
'Mattermost NotifyMyAndroid Prowl Pushalot PushBullet Pushjet '
2018-03-12 00:57:07 +01:00
'Pushover Rocket.Chat Slack Toasty Telegram Twitter XBMC Stride '
'Emby IFTTT Discord',
2017-11-25 22:51:46 +01:00
author='Chris Caron',
author_email='lead2gold@gmail.com',
packages=find_packages(),
package_data={
'apprise': [
'assets/NotifyXML-1.0.xsd',
'assets/themes/default/*.png',
],
2017-11-25 22:51:46 +01:00
},
scripts=['cli/notify.py', ],
2017-11-25 22:51:46 +01:00
install_requires=open('requirements.txt').readlines(),
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',
'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},
python_requires='>=2.7',
setup_requires=['pytest-runner', ],
tests_require=open('dev-requirements.txt').readlines(),
2017-11-25 22:51:46 +01:00
)