mirror of
https://github.com/LBRYFoundation/lbry-sdk.git
synced 2025-08-23 17:27:25 +00:00
unify behavior
This commit is contained in:
parent
95e503cf1f
commit
780044ebd6
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -49,8 +49,8 @@ def package_files(directory):
|
||||||
package_name = "lbrynet"
|
package_name = "lbrynet"
|
||||||
base_dir = os.path.abspath(os.path.dirname(__file__))
|
base_dir = os.path.abspath(os.path.dirname(__file__))
|
||||||
# Get the long description from the README file
|
# Get the long description from the README file
|
||||||
with open(os.path.join(base_dir, 'README.md')) as f:
|
with open(os.path.join(base_dir, 'README.md'), 'rb') as f:
|
||||||
long_description = f.read()
|
long_description = f.read().decode('utf-8')
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=package_name,
|
name=package_name,
|
||||||
|
|
Loading…
Add table
Reference in a new issue