Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/unify readme #186

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chg: dev: use codecs for python 2 compatibility
  • Loading branch information
rachmadaniHaryono committed May 28, 2020
commit b9e0565e08783b94185f59c9b95ccf763ae39d94
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import codecs


NAME = 'PyYAML'
VERSION = '5.3.1'
DESCRIPTION = "YAML parser and emitter for Python"

with open('README.rst', encoding='utf-8') as f:
with codecs.open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()

AUTHOR = "Kirill Simonov"
Expand Down