From 6b2c831a4466af40d86d6e3b194e9e55ffda441b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sat, 7 Jan 2017 18:45:11 +0100 Subject: [PATCH] Packaging fix --- fints/__init__.py | 2 +- setup.py | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) 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', -- 2.47.2