From: Raphael Michel Date: Sat, 7 Jan 2017 17:45:11 +0000 (+0100) Subject: Packaging fix X-Git-Tag: v0.2.0~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b2c831a4466af40d86d6e3b194e9e55ffda441b;p=thirdparty%2Fpython-fints.git Packaging fix --- diff --git a/fints/__init__.py b/fints/__init__.py index 75b8a57..d4f4d81 100644 --- a/fints/__init__.py +++ b/fints/__init__.py @@ -1 +1 @@ -version = '0.1.0' +version = '0.1.1' diff --git a/setup.py b/setup.py index baa65aa..e48a574 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,12 @@ from fints import version here = path.abspath(path.dirname(__file__)) -# Get the long description from the relevant file -with open(path.join(here, 'README.md'), encoding='utf-8') as f: - long_description = f.read() +try: + # Get the long description from the relevant file + with open(path.join(here, 'README.md'), encoding='utf-8') as f: + long_description = f.read() +except: + long_description = '' setup( name='fints',