FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-zipstream/setup.py at master · DisruptiveLabs/python-zipstream · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
DisruptiveLabs
/
python-zipstream
Public
forked from
arjan-s/python-zipstream
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-zipstream
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
27 lines (24 loc) · 859 Bytes
Breadcrumbs
python-zipstream
/
setup.py
Copy path
File metadata and controls
27 lines (24 loc) · 859 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
=
'arjan@anymore.nl'
,
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"
,
],
)
Back
|
FazBrowse Home
|
New Git URL