From b7fc9c4c815f7237b01ca39a52df4129a197a7bd Mon Sep 17 00:00:00 2001 From: Alicja Kluczek Date: Fri, 22 Jan 2021 21:38:37 +0100 Subject: [PATCH] Bump version to 2.1.3 (#74) Use open from io module to load the description, so that it's compatible with both python2 and python3 --- setup.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cbd0836..285d27f 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,18 @@ +from os import path +import io from setuptools import setup, find_packages + +with io.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f: + long_description = f.read() + setup( name = 'filetracker', - version = '2.1.2', + version = '2.1.3', author = 'SIO2 Project Team', author_email = 'sio2@sio2project.mimuw.edu.pl', description = 'Filetracker caching file storage', + long_description=long_description, + long_description_content_type='text/markdown', url = 'https://github.com/sio2project/filetracker', license = 'GPL',