mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
fix encoding problem with long_description
This commit is contained in:
parent
8745d5b6b7
commit
79b5add08f
6
setup.py
6
setup.py
@ -1,8 +1,9 @@
|
|||||||
import setuptools
|
import setuptools
|
||||||
|
import codecs
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='rethinkstuff',
|
name='rethinkstuff',
|
||||||
version='0.1.5',
|
version='0.1.6',
|
||||||
packages=['rethinkstuff'],
|
packages=['rethinkstuff'],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
@ -14,5 +15,6 @@ setuptools.setup(
|
|||||||
author='Noah Levitt',
|
author='Noah Levitt',
|
||||||
author_email='nlevitt@archive.org',
|
author_email='nlevitt@archive.org',
|
||||||
description='Rudimentary rethinkdb python library with some smarts, perhaps some dumbs',
|
description='Rudimentary rethinkdb python library with some smarts, perhaps some dumbs',
|
||||||
long_description=open('README.rst').read(),
|
long_description=codecs.open(
|
||||||
|
'README.rst', mode='r', encoding='utf-8').read(),
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user