mirror of https://github.com/caronc/apprise
parent
ffec24e891
commit
7ed2c91a9b
|
@ -17,7 +17,7 @@
|
||||||
# GNU Lesser General Public License for more details.
|
# GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
__title__ = 'apprise'
|
__title__ = 'apprise'
|
||||||
__version__ = '0.5.1'
|
__version__ = '0.5.2'
|
||||||
__author__ = 'Chris Caron <lead2gold@gmail.com>'
|
__author__ = 'Chris Caron <lead2gold@gmail.com>'
|
||||||
__license__ = 'GPLv3'
|
__license__ = 'GPLv3'
|
||||||
__copywrite__ = 'Copyright 2017-2018 Chris Caron <lead2gold@gmail.com>'
|
__copywrite__ = 'Copyright 2017-2018 Chris Caron <lead2gold@gmail.com>'
|
||||||
|
|
11
setup.py
11
setup.py
|
@ -18,10 +18,6 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import platform
|
import platform
|
||||||
import sys
|
|
||||||
from os.path import join
|
|
||||||
from os.path import abspath
|
|
||||||
from os.path import dirname
|
|
||||||
try:
|
try:
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
@ -30,11 +26,6 @@ except ImportError:
|
||||||
|
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
|
|
||||||
# Include 'this' library to allow a single location for
|
|
||||||
# version referencing
|
|
||||||
sys.path.insert(0, join(dirname(abspath(__file__)), 'apprise'))
|
|
||||||
from apprise import __version__ as version
|
|
||||||
|
|
||||||
install_options = os.environ.get("APPRISE_INSTALL", "").split(",")
|
install_options = os.environ.get("APPRISE_INSTALL", "").split(",")
|
||||||
install_requires = open('requirements.txt').readlines()
|
install_requires = open('requirements.txt').readlines()
|
||||||
if platform.system().lower().startswith('win'):
|
if platform.system().lower().startswith('win'):
|
||||||
|
@ -51,7 +42,7 @@ else:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='apprise',
|
name='apprise',
|
||||||
version=version,
|
version='0.5.2',
|
||||||
description='A universal notification service',
|
description='A universal notification service',
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
long_description=open('README').read(),
|
long_description=open('README').read(),
|
||||||
|
|
Loading…
Reference in New Issue