Skip to content

Commit b7fc9c4

Browse files
authored
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
1 parent e83297f commit b7fc9c4

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1+
from os import path
2+
import io
13
from setuptools import setup, find_packages
4+
5+
with io.open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
6+
long_description = f.read()
7+
28
setup(
39
name = 'filetracker',
4-
version = '2.1.2',
10+
version = '2.1.3',
511
author = 'SIO2 Project Team',
612
author_email = '[email protected]',
713
description = 'Filetracker caching file storage',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
816
url = 'https://github.com/sio2project/filetracker',
917
license = 'GPL',
1018

0 commit comments

Comments
 (0)