Skip to content

Commit

Permalink
[bindings] fix twine issue when publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kabeor committed Jun 18, 2023
1 parent 2c5074a commit fd6832c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def run(self):
author_email='[email protected]',
description='Capstone disassembly engine',
url='https://www.capstone-engine.org',
long_description=open('README.txt').read(),
long_description=open('README.txt', encoding="utf8").read(),
long_description_content_type='text/markdown',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
classifiers=[
Expand Down

0 comments on commit fd6832c

Please sign in to comment.