DDownloader 0.1.7__tar.gz → 0.1.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ from DDownloader.main import main
@@ -1,7 +1,8 @@
1
1
  import argparse
2
2
  import logging
3
- from modules.dash_downloader import DASH
4
- from modules.hls_downloader import HLS
3
+ import coloredlogs
4
+ from DDownloader.modules.dash_downloader import DASH
5
+ from DDownloader.modules.hls_downloader import HLS
5
6
 
6
7
  logger = logging.getLogger("+ MAIN + ")
7
8
  coloredlogs.install(level='DEBUG', logger=logger)
@@ -1,16 +1,20 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DDownloader
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: A downloader for DRM-protected content.
5
5
  Home-page: https://github.com/ThatNotEasy/DDownloader
6
6
  Author: ThatNotEasy
7
7
  Author-email: apidotmy@proton.me
8
8
  License: MIT
9
9
  Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
12
13
  Requires-Python: >=3.10
13
14
  Description-Content-Type: text/markdown
15
+ Requires-Dist: requests>=2.26.0
16
+ Requires-Dist: coloredlogs>=15.0
17
+ Requires-Dist: loguru>=0.6.0
14
18
 
15
19
  # DDownloader
16
20
  - DDownloader is a Python library to download HLS and DASH manifests and decrypt media files.
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ DDownloader = DDownloader.main:main
@@ -0,0 +1,3 @@
1
+ requests>=2.26.0
2
+ coloredlogs>=15.0
3
+ loguru>=0.6.0
@@ -1,16 +1,20 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: DDownloader
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: A downloader for DRM-protected content.
5
5
  Home-page: https://github.com/ThatNotEasy/DDownloader
6
6
  Author: ThatNotEasy
7
7
  Author-email: apidotmy@proton.me
8
8
  License: MIT
9
9
  Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.10
10
11
  Classifier: License :: OSI Approved :: MIT License
11
12
  Classifier: Operating System :: OS Independent
12
13
  Requires-Python: >=3.10
13
14
  Description-Content-Type: text/markdown
15
+ Requires-Dist: requests>=2.26.0
16
+ Requires-Dist: coloredlogs>=15.0
17
+ Requires-Dist: loguru>=0.6.0
14
18
 
15
19
  # DDownloader
16
20
  - DDownloader is a Python library to download HLS and DASH manifests and decrypt media files.
@@ -1,31 +1,35 @@
1
1
  from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+
4
+ # Read the long description from README.md
5
+ long_description = Path("README.md").read_text(encoding="utf-8")
2
6
 
3
7
  setup(
4
8
  name="DDownloader",
5
- version="0.1.7",
9
+ version="0.1.8",
6
10
  description="A downloader for DRM-protected content.",
7
- long_description=open("README.md").read(),
11
+ long_description=long_description,
8
12
  long_description_content_type="text/markdown",
9
13
  author="ThatNotEasy",
10
14
  author_email="apidotmy@proton.me",
11
15
  url="https://github.com/ThatNotEasy/DDownloader",
12
16
  license="MIT",
13
- packages=find_packages(),
17
+ packages=find_packages(include=["DDownloader", "DDownloader.*"]),
14
18
  classifiers=[
15
19
  "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.10",
16
21
  "License :: OSI Approved :: MIT License",
17
22
  "Operating System :: OS Independent",
18
23
  ],
19
24
  python_requires=">=3.10",
20
25
  install_requires=[
21
- "requests",
22
- "coloredlogs",
23
- "loguru",
24
- "argparse",
26
+ "requests>=2.26.0",
27
+ "coloredlogs>=15.0",
28
+ "loguru>=0.6.0",
25
29
  ],
26
30
  entry_points={
27
31
  "console_scripts": [
28
- "ddownloader=ddownloader.main:main",
32
+ "DDownloader=DDownloader.main:main",
29
33
  ],
30
- },
31
- )
34
+ }
35
+ )
@@ -1,4 +0,0 @@
1
- from .main import main
2
- from .modules import DASH, HLS
3
-
4
- __all__ = ['main', 'DASH', 'HLS']
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- ddownloader = ddownloader.main:main
@@ -1,4 +0,0 @@
1
- requests
2
- coloredlogs
3
- loguru
4
- argparse
File without changes
File without changes