- commit
- 40602378f8db6f9fe8fe45d06eb4b8fed9fb2f49
- parent
- f35c7acb8eaf6c13f6a5513f79a786163fbddc6a
- Author
- Tobias Bengfort <tobias.bengfort@gmx.net>
- Date
- 2015-12-22 15:23
fix reading README in setup.py
Diffstat
| M | setup.py | 9 | ++++++++- |
1 files changed, 8 insertions, 1 deletions
diff --git a/setup.py b/setup.py
@@ -1,13 +1,20 @@ 1 1 #!/usr/bin/env python 2 2 -1 3 import os -1 4 import re 3 5 from setuptools import setup 4 6 -1 7 DIRNAME = os.path.abspath(os.path.dirname(__file__)) -1 8 rel = lambda *parts: os.path.abspath(os.path.join(DIRNAME, *parts)) -1 9 -1 10 README = open(rel('README.rst')).read() -1 11 5 12 6 13 setup( 7 14 name='jsonproxy', 8 15 version='1.0.1', 9 16 description='Generic proxy to allow access to non-jsonp APIs',10 -1 long_description=open('README.rst').read(),-1 17 long_description=README, 11 18 url='https://github.com/xi/PyJSONProxy', 12 19 author='Tobias Bengfort', 13 20 author_email='tobias.bengfort@posteo.de',