Skip to content

Commit

Permalink
Fix setup.py long_description utf8 (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelOnFira committed Jul 22, 2020
1 parent 27deaa2 commit 7d19982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -56,7 +56,7 @@ def find_version(*file_paths):
'Topic :: Utilities',
],
keywords='faker fixtures data test django seed',
long_description=open('README.rst', 'r').read(),
long_description=open('README.rst', 'rb').read().decode('utf-8'),
install_requires=['django>=1.11', 'Faker>=0.7.7'],
tests_require=['django>=1.11', 'fake-factory>=0.5.0', 'coverage', 'django-nose'],
test_suite="runtests.runtests",
Expand Down

0 comments on commit 7d19982

Please sign in to comment.