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 1855329 commit f78a3eeCopy full SHA for f78a3ee
setup.py
@@ -1,13 +1,15 @@
1
# -*- coding: utf-8 -*-
2
+import io
3
+
4
from setuptools import setup, find_packages
5
6
7
setup(
8
name='django-pipeline',
9
version='1.3.22',
10
description='Pipeline is an asset packaging library for Django.',
- long_description=open('README.rst').read() + '\n\n' +
- open('HISTORY.rst').read(),
11
+ long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
12
+ io.open('HISTORY.rst', encoding='utf-8').read(),
13
author='Timothée Peignier',
14
author_email='[email protected]',
15
url='https://github.com/cyberdelia/django-pipeline',
0 commit comments