Skip to content

Commit b621deb

Browse files
committed
Fix zipfile requirement
1 parent fef5076 commit b621deb

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
11
__pycache__
2+
.idea/
3+
*.pyc
4+
.pypirc
5+
.vscode
6+
dist

MANIFEST

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# file GENERATED by distutils, do NOT edit
2+
setup.cfg
3+
setup.py
4+
onedrivedownloader/__init__.py
5+
onedrivedownloader/main.py

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
## Requires
44
- `tqdm`: for nice progress bar
5-
- `requests`: pretty obvious
6-
- `zipfile`: for extracting zip files
5+
- `requests`: fetch data from OneDrive
76

87
## Usage
98
`from onedrivedownloader import download`

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
requests
2-
tqdm
3-
zipfile
2+
tqdm

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
setup(
33
name='onedrivedownloader',
44
packages=['onedrivedownloader'],
5-
version='0.1',
5+
version='0.2',
66
license='MIT',
77
description='Python utility to download files through OneDrive',
88
author='Lorenzo Bonicelli',
99
author_email='[email protected]',
1010
url='https://github.com/loribonna/onedrivedownloader',
11-
download_url='https://github.com/loribonna/onedrivedownloader/archive/refs/tags/v_01.zip',
11+
download_url='https://github.com/loribonna/onedrivedownloader/archive/refs/tags/v_02.zip',
1212
keywords=['onedrive', 'downloader', 'python'],
1313
install_requires=[
1414
'requests',
15-
'zipfile',
1615
'tqdm'
1716
],
1817
classifiers=[

0 commit comments

Comments
 (0)