Commit f78a3ee1 by Timothée Peignier

fix setup.py. close #324

parent 18553293
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages from setuptools import setup, find_packages
...@@ -6,8 +8,8 @@ setup( ...@@ -6,8 +8,8 @@ setup(
name='django-pipeline', name='django-pipeline',
version='1.3.22', version='1.3.22',
description='Pipeline is an asset packaging library for Django.', description='Pipeline is an asset packaging library for Django.',
long_description=open('README.rst').read() + '\n\n' + long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
open('HISTORY.rst').read(), io.open('HISTORY.rst', encoding='utf-8').read(),
author='Timothée Peignier', author='Timothée Peignier',
author_email='timothee.peignier@tryphon.org', author_email='timothee.peignier@tryphon.org',
url='https://github.com/cyberdelia/django-pipeline', url='https://github.com/cyberdelia/django-pipeline',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment