Skip to content

Commit 7e861b1

Browse files
author
Arjan Schrijver
committed
New release of forked package
1 parent c5a7916 commit 7e861b1

2 files changed

Lines changed: 19 additions & 11 deletions

File tree

README.markdown renamed to README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11

22
# python-zipstream
33

4-
[![Build Status](https://travis-ci.org/allanlei/python-zipstream.png?branch=master)](https://travis-ci.org/allanlei/python-zipstream)
5-
[![Coverage Status](https://coveralls.io/repos/allanlei/python-zipstream/badge.png)](https://coveralls.io/r/allanlei/python-zipstream)
6-
74
zipstream.py is a zip archive generator based on python 3.3's zipfile.py. It was created to
85
generate a zip file generator for streaming (ie web apps). This is beneficial for when you
96
want to provide a downloadable archive of a large collection of regular files, which would be infeasible to
@@ -78,12 +75,12 @@ archives.
7875
## Installation
7976

8077
```
81-
pip install zipstream
78+
pip install zipstream-new
8279
```
8380

8481
## Requirements
8582

86-
* Python 2.6, 2.7, 3.2, 3.3, pypy
83+
* Python 2.6+, 3.2+, pypy
8784

8885
## Examples
8986

setup.py

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,26 @@
22
from setuptools import setup, find_packages
33

44

5+
with open("README.md", "r") as fh:
6+
long_description = fh.read()
7+
58
setup(
6-
name='zipstream',
7-
version='1.1.4',
8-
description='Zipfile generator',
9-
author='Allan Lei',
10-
author_email='allanlei@helveticode.com',
11-
url='https://github.com/allanlei/python-zipstream',
9+
name='zipstream-new',
10+
version='1.1.5',
11+
description='Zipfile generator that takes input files as well as streams',
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
author='arjan5',
15+
author_email='arjan@anymore.nl',
16+
url='https://github.com/arjan-s/python-zipstream',
1217
packages=find_packages(exclude=['tests']),
1318
keywords='zip streaming',
1419
test_suite='nose.collector',
1520
tests_require=['nose'],
21+
classifiers=[
22+
"Programming Language :: Python",
23+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
24+
"Operating System :: OS Independent",
25+
"Topic :: System :: Archiving :: Compression",
26+
],
1627
)

0 commit comments

Comments
 (0)