10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbf05a2 commit 03e57bfCopy full SHA for 03e57bf
setup.py
@@ -1,4 +1,5 @@
1
import setuptools
2
+import io
3
import sys
4
import os.path
5
import subprocess
@@ -13,13 +14,13 @@
13
14
15
setuptools.setup(
16
name='jsonpath-rw',
- version='1.1',
17
+ version='1.1.1',
18
description='A robust and significantly extended implementation of JSONPath for Python, with a clear AST for metaprogramming.',
19
author='Kenneth Knowles',
20
author_email='kenn.knowles@gmail.com',
21
url='https://github.com/kennknowles/python-jsonpath-rw',
22
license='Apache 2.0',
- long_description=open(readme).read(),
23
+ long_description=io.open(readme, encoding='utf-8').read(),
24
packages = ['jsonpath_rw'],
25
test_suite = 'tests',
26
install_requires = [ 'ply', 'decorator', 'six' ],
0 commit comments