Skip to content

Commit 6f78553

Browse files
committed
Fix README.rst location
1 parent 2390b1f commit 6f78553

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include *.rst

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
#!/usr/bin/env python
22

33
from distutils.core import setup
4+
import os
45

5-
VERSION='1.0.7'
6+
ROOT = os.path.dirname(__file__)
7+
if not ROOT:
8+
ROOT = '.'
9+
10+
VERSION='1.0.9'
611

712
setup(name='zipseeker',
813
packages=['zipseeker'],
914
version=VERSION,
1015
description='Create a streamable and (somewhat) seekable .ZIP file',
11-
long_description=open('README.rst').read(),
16+
long_description=open(ROOT + '/README.rst').read(),
1217
author='Ayke van Laethem',
1318
author_email='aykevanlaethem@gmail.com',
1419
url='https://github.com/aykevl/zipseeker',

0 commit comments

Comments
 (0)