Skip to content

Commit

Permalink
Merge pull request #66 from li-positive-one/patch-1
Browse files Browse the repository at this point in the history
Update setup.py to include utf8 encoding
  • Loading branch information
cokelaer committed Oct 26, 2022
2 parents 79cf691 + f63c58c commit 156184c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -38,7 +38,7 @@
maintainer_email = metainfo['authors']['Cokelaer'][1],
author = metainfo['authors']['Cokelaer'][0],
author_email = metainfo['authors']['Cokelaer'][1],
long_description = open("README.rst").read(),
long_description = open("README.rst", encoding='utf-8').read(),
keywords = metainfo['keywords'],
description = metainfo['description'],
license = metainfo['license'],
Expand All @@ -51,7 +51,7 @@
# package installation
package_dir = {'':'src'},
packages = ['fitter'],
install_requires = open("requirements.txt").read(),
install_requires = open("requirements.txt", encoding='utf-8').read(),
entry_points = {
'console_scripts':[
'fitter=fitter.main:main',
Expand Down

0 comments on commit 156184c

Please sign in to comment.