Skip to content

Commit f9152df

Browse files
committed
Fix requirements.txt requirement
1 parent 60b48aa commit f9152df

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
First stable release: `1.0.0`
88

9-
Current: `1.0.2`
9+
Current: `1.0.3`
1010

1111
*Do not require authentication.*
1212

setup.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@
22

33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
5-
with open("requirements.txt", "r", encoding="utf-8") as fh:
6-
requirements = fh.read()
75

86
setup(
97
name='onedrivedownloader',
108
packages=find_packages(),
11-
version='1.0.2',
9+
version='1.0.3',
1210
license='MIT',
1311
description='Python utility to download files through OneDrive',
1412
long_description=long_description,
1513
long_description_content_type="text/markdown",
1614
author='Lorenzo Bonicelli',
1715
author_email='[email protected]',
1816
url='https://github.com/loribonna/onedrivedownloader',
19-
download_url='https://github.com/loribonna/onedrivedownloader/archive/refs/tags/v1.0.2.zip',
17+
download_url='https://github.com/loribonna/onedrivedownloader/archive/refs/tags/v1.0.3.zip',
2018
keywords=['onedrive', 'downloader', 'download', 'python', 'utility'],
21-
install_requires=[requirements],
19+
install_requires=["requests","tqdm"],
2220
classifiers=[
2321
'Development Status :: 3 - Alpha',
2422
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)