File: setup.py

package info (click to toggle)
python-zipstream 1.1.4-1.2
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 156 kB
  • sloc: python: 543; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 361 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages


setup(
    name='zipstream',
    version='1.1.4',
    description='Zipfile generator',
    author='Allan Lei',
    author_email='allanlei@helveticode.com',
    url='https://github.com/allanlei/python-zipstream',
    packages=find_packages(exclude=['tests']),
    keywords='zip streaming',
)