1 parent 2390b1f commit 6f78553Copy full SHA for 6f78553
2 files changed
MANIFEST.in
@@ -0,0 +1 @@
1
+include *.rst
setup.py
@@ -1,14 +1,19 @@
#!/usr/bin/env python
2
3
from distutils.core import setup
4
+import os
5
-VERSION='1.0.7'
6
+ROOT = os.path.dirname(__file__)
7
+if not ROOT:
8
+ ROOT = '.'
9
+
10
+VERSION='1.0.9'
11
12
setup(name='zipseeker',
13
packages=['zipseeker'],
14
version=VERSION,
15
description='Create a streamable and (somewhat) seekable .ZIP file',
- long_description=open('README.rst').read(),
16
+ long_description=open(ROOT + '/README.rst').read(),
17
author='Ayke van Laethem',
18
author_email='aykevanlaethem@gmail.com',
19
url='https://github.com/aykevl/zipseeker',
0 commit comments