forked from arjan-s/python-zipstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 859 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='zipstream-new',
version='1.1.5',
description='Zipfile generator that takes input files as well as streams',
long_description=long_description,
long_description_content_type="text/markdown",
author='arjan5',
author_email='[email protected]',
url='https://github.com/arjan-s/python-zipstream',
packages=find_packages(exclude=['tests']),
keywords='zip streaming',
test_suite='nose.collector',
tests_require=['nose'],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Archiving :: Compression",
],
)