Fix duplicate argument

This commit is contained in:
allegroai
2020-07-30 15:15:21 +03:00
parent 619be3dc75
commit 6dca60aef2
2 changed files with 3 additions and 2 deletions

View File

@@ -7,10 +7,12 @@ import os.path
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
def read_text(filepath):
with open(filepath, "r") as f:
with open(filepath, "r", encoding="utf-8") as f:
return f.read()
here = os.path.dirname(__file__)
# Get the long description from the README file
long_description = read_text(os.path.join(here, 'README.md'))