]> git.ipfire.org Git - thirdparty/python-fints.git/commitdiff
Packaging fix
authorRaphael Michel <mail@raphaelmichel.de>
Sat, 7 Jan 2017 17:45:11 +0000 (18:45 +0100)
committerRaphael Michel <mail@raphaelmichel.de>
Sat, 7 Jan 2017 17:45:51 +0000 (18:45 +0100)
fints/__init__.py
setup.py

index 75b8a57be50093b0c547c22abdd096ba06e0d11e..d4f4d81237fe4f9a94ab50f52f3763d1c7d7dfbb 100644 (file)
@@ -1 +1 @@
-version = '0.1.0'
+version = '0.1.1'
index baa65aa9f412ed2df72405eec1782672ceb3aff6..e48a5748949c8a2605b6f9c8db2706de76ba9644 100644 (file)
--- 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',