1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 19:45:12 +01:00

Do not import reserved name

This commit is contained in:
2018-05-25 16:21:53 +02:00
parent c82e3a02d4
commit 834f95c34b

View File

@@ -7,13 +7,13 @@ https://github.com/pypa/sampleproject
from setuptools import setup
# To use a consistent encoding
from codecs import open
from codecs import open as codecopen
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with codecopen(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(