Skip to content

Commit 2390b1f

Browse files
committed
Some more PyPI fixes
1 parent 4d3e4d4 commit 2390b1f

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

MANIFEST.in

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
from distutils.core import setup
44

5+
VERSION='1.0.7'
6+
57
setup(name='zipseeker',
68
packages=['zipseeker'],
7-
version='1.0.1',
9+
version=VERSION,
810
description='Create a streamable and (somewhat) seekable .ZIP file',
11+
long_description=open('README.rst').read(),
912
author='Ayke van Laethem',
1013
author_email='aykevanlaethem@gmail.com',
1114
url='https://github.com/aykevl/zipseeker',
1215
keywords=['zip', 'http', 'streaming'],
13-
download='https://github.com/peterldowns/python-zipseeker/archive/1.0.1.tar.gz'
16+
download_url='https://github.com/aykevl/python-zipseeker/archive/v%s.zip' % VERSION,
1417
)

0 commit comments

Comments
 (0)