SpotDown 0.1.0__tar.gz → 0.1.1__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.
Files changed (27) hide show
  1. spotdown-0.1.1/MANIFEST.in +3 -0
  2. {spotdown-0.1.0 → spotdown-0.1.1}/PKG-INFO +10 -5
  3. spotdown-0.1.1/SpotDown/upload/version.py +5 -0
  4. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/PKG-INFO +10 -5
  5. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/SOURCES.txt +3 -0
  6. spotdown-0.1.1/requirements.txt +8 -0
  7. spotdown-0.1.1/setup.py +50 -0
  8. spotdown-0.1.0/setup.py +0 -39
  9. {spotdown-0.1.0 → spotdown-0.1.1}/LICENSE +0 -0
  10. {spotdown-0.1.0 → spotdown-0.1.1}/README.md +0 -0
  11. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/__init__.py +0 -0
  12. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/downloader/__init__.py +0 -0
  13. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/downloader/youtube_downloader.py +0 -0
  14. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/extractor/__init__.py +0 -0
  15. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/extractor/spotify_extractor.py +0 -0
  16. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/extractor/youtube_extractor.py +0 -0
  17. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/main.py +0 -0
  18. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/utils/__init__.py +0 -0
  19. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/utils/config_json.py +0 -0
  20. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/utils/console_utils.py +0 -0
  21. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/utils/file_utils.py +0 -0
  22. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown/utils/headers.py +0 -0
  23. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/dependency_links.txt +0 -0
  24. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/entry_points.txt +0 -0
  25. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/requires.txt +0 -0
  26. {spotdown-0.1.0 → spotdown-0.1.1}/SpotDown.egg-info/top_level.txt +0 -0
  27. {spotdown-0.1.0 → spotdown-0.1.1}/setup.cfg +0 -0
@@ -0,0 +1,3 @@
1
+ include README.md
2
+ include requirements.txt
3
+ include SpotDown/upload/version.py
@@ -1,10 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SpotDown
3
- Version: 0.1.0
4
- Home-page: https://github.com/Arrowar/SpotDown
3
+ Version: 0.1.1
4
+ Summary: A command-line program to download music
5
+ Home-page: https://github.com/Arrowar/spotdown
5
6
  Author: Arrowar
6
- Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
7
- Project-URL: Source, https://github.com/Arrowar/SpotDown
7
+ Author-email: author@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10
+ Classifier: Operating System :: OS Independent
8
11
  Requires-Python: >=3.8
9
12
  Description-Content-Type: text/markdown
10
13
  License-File: LICENSE
@@ -17,13 +20,15 @@ Requires-Dist: unidecode
17
20
  Requires-Dist: yt-dlp
18
21
  Requires-Dist: Pillow
19
22
  Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
20
25
  Dynamic: description
21
26
  Dynamic: description-content-type
22
27
  Dynamic: home-page
23
28
  Dynamic: license-file
24
- Dynamic: project-url
25
29
  Dynamic: requires-dist
26
30
  Dynamic: requires-python
31
+ Dynamic: summary
27
32
 
28
33
  <div align="center">
29
34
 
@@ -0,0 +1,5 @@
1
+ __title__ = 'SpotDown'
2
+ __version__ = '0.1.1'
3
+ __author__ = 'Arrowar'
4
+ __description__ = 'A command-line program to download music'
5
+ __copyright__ = 'Copyright 2025'
@@ -1,10 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SpotDown
3
- Version: 0.1.0
4
- Home-page: https://github.com/Arrowar/SpotDown
3
+ Version: 0.1.1
4
+ Summary: A command-line program to download music
5
+ Home-page: https://github.com/Arrowar/spotdown
5
6
  Author: Arrowar
6
- Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
7
- Project-URL: Source, https://github.com/Arrowar/SpotDown
7
+ Author-email: author@example.com
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10
+ Classifier: Operating System :: OS Independent
8
11
  Requires-Python: >=3.8
9
12
  Description-Content-Type: text/markdown
10
13
  License-File: LICENSE
@@ -17,13 +20,15 @@ Requires-Dist: unidecode
17
20
  Requires-Dist: yt-dlp
18
21
  Requires-Dist: Pillow
19
22
  Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
20
25
  Dynamic: description
21
26
  Dynamic: description-content-type
22
27
  Dynamic: home-page
23
28
  Dynamic: license-file
24
- Dynamic: project-url
25
29
  Dynamic: requires-dist
26
30
  Dynamic: requires-python
31
+ Dynamic: summary
27
32
 
28
33
  <div align="center">
29
34
 
@@ -1,5 +1,7 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
4
+ requirements.txt
3
5
  setup.py
4
6
  SpotDown/__init__.py
5
7
  SpotDown/main.py
@@ -14,6 +16,7 @@ SpotDown/downloader/youtube_downloader.py
14
16
  SpotDown/extractor/__init__.py
15
17
  SpotDown/extractor/spotify_extractor.py
16
18
  SpotDown/extractor/youtube_extractor.py
19
+ SpotDown/upload/version.py
17
20
  SpotDown/utils/__init__.py
18
21
  SpotDown/utils/config_json.py
19
22
  SpotDown/utils/console_utils.py
@@ -0,0 +1,8 @@
1
+ rich
2
+ httpx
3
+ playwright
4
+ unidecode
5
+ ua-generator
6
+ unidecode
7
+ yt-dlp
8
+ Pillow
@@ -0,0 +1,50 @@
1
+ # 05.04.2024
2
+
3
+ from setuptools import setup, find_packages
4
+ from pathlib import Path
5
+
6
+ base_dir = Path(__file__).resolve().parent
7
+
8
+
9
+ # Read version
10
+ version = {}
11
+ version_file = base_dir / "SpotDown" / "upload" / "version.py"
12
+ with open(version_file, encoding="utf-8") as f:
13
+ exec(f.read(), version)
14
+
15
+ # Read requirements
16
+ requirements_file = base_dir / "requirements.txt"
17
+ with open(requirements_file, encoding="utf-8") as f:
18
+ install_requires = f.read().splitlines()
19
+
20
+
21
+ # Read README.md
22
+ readme_file = base_dir / "README.md"
23
+ with open(readme_file, encoding="utf-8") as f:
24
+ long_description = f.read()
25
+
26
+
27
+ setup(
28
+ name="SpotDown",
29
+ version=version["__version__"],
30
+ author="Arrowar",
31
+ author_email="author@example.com",
32
+ description="A command-line program to download music",
33
+ long_description=long_description,
34
+ long_description_content_type="text/markdown",
35
+ url="https://github.com/Arrowar/spotdown",
36
+ packages=find_packages(),
37
+ include_package_data=True,
38
+ install_requires=install_requires,
39
+ entry_points={
40
+ "console_scripts": [
41
+ "spotdown=SpotDown.main:run",
42
+ ],
43
+ },
44
+ classifiers=[
45
+ "Programming Language :: Python :: 3",
46
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
47
+ "Operating System :: OS Independent",
48
+ ],
49
+ python_requires=">=3.8",
50
+ )
spotdown-0.1.0/setup.py DELETED
@@ -1,39 +0,0 @@
1
- import os
2
- import re
3
- from setuptools import setup, find_packages
4
-
5
- def read_readme():
6
- with open("README.md", "r", encoding="utf-8") as fh:
7
- return fh.read()
8
-
9
- requirements_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
10
- if os.path.exists(requirements_path):
11
- with open(requirements_path, "r", encoding="utf-8-sig") as f:
12
- required_packages = f.read().splitlines()
13
- else:
14
- required_packages = []
15
-
16
- def get_version():
17
- return "0.1.0"
18
-
19
- setup(
20
- name="SpotDown",
21
- version=get_version(),
22
- long_description=read_readme(),
23
- long_description_content_type="text/markdown",
24
- author="Arrowar",
25
- url="https://github.com/Arrowar/SpotDown",
26
- packages=find_packages(include=["SpotDown", "SpotDown.*"]),
27
- install_requires=required_packages,
28
- python_requires='>=3.8',
29
- entry_points={
30
- "console_scripts": [
31
- "spotdown=SpotDown.main:run",
32
- ],
33
- },
34
- include_package_data=True,
35
- project_urls={
36
- "Bug Reports": "https://github.com/Arrowar/SpotDown/issues",
37
- "Source": "https://github.com/Arrowar/SpotDown"
38
- }
39
- )
File without changes
File without changes
File without changes
File without changes
File without changes