|
2 | 2 |
|
3 | 3 | with open("README.md", "r", encoding="utf-8") as fh:
|
4 | 4 | long_description = fh.read()
|
5 |
| -with open("requirements.txt", "r", encoding="utf-8") as fh: |
6 |
| - requirements = fh.read() |
7 | 5 |
|
8 | 6 | setup(
|
9 | 7 | name='onedrivedownloader',
|
10 | 8 | packages=find_packages(),
|
11 |
| - version='1.0.2', |
| 9 | + version='1.0.3', |
12 | 10 | license='MIT',
|
13 | 11 | description='Python utility to download files through OneDrive',
|
14 | 12 | long_description=long_description,
|
15 | 13 | long_description_content_type="text/markdown",
|
16 | 14 | author='Lorenzo Bonicelli',
|
17 | 15 |
|
18 | 16 | 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', |
20 | 18 | keywords=['onedrive', 'downloader', 'download', 'python', 'utility'],
|
21 |
| - install_requires=[requirements], |
| 19 | + install_requires=["requests","tqdm"], |
22 | 20 | classifiers=[
|
23 | 21 | 'Development Status :: 3 - Alpha',
|
24 | 22 | 'Intended Audience :: Developers',
|
|
0 commit comments