Commit d0db8fcb by Timothée Peignier

python 2.5 fix

parent 8b705150
......@@ -2,11 +2,8 @@
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
readme = open('README.rst').read()
license = open('LICENSE').read()
setup(
name='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