-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
30 lines (26 loc) · 914 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
28
29
30
import setuptools
def long_description():
with open('README.md', 'r') as file:
return file.read()
setuptools.setup(
name='stream-zip',
version='0.0.62',
author='Department for International Trade',
author_email='[email protected]',
description='Python function to construct a ZIP archive with stream processing - without having to store the entire ZIP in memory or disk',
long_description=long_description(),
long_description_content_type='text/markdown',
project_urls={
'Documentation': 'https://stream-zip.docs.trade.gov.uk/',
'Source': 'https://github.com/uktrade/stream-zip',
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Archiving :: Compression',
],
python_requires='>=3.7.1',
py_modules=[
'stream_zip',
],
)