SpotDown 0.0.7__tar.gz → 0.0.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.
Files changed (26) hide show
  1. {spotdown-0.0.7/SpotDown.egg-info → spotdown-0.0.8}/PKG-INFO +1 -3
  2. {spotdown-0.0.7 → spotdown-0.0.8}/README.md +1 -3
  3. {spotdown-0.0.7 → spotdown-0.0.8/SpotDown.egg-info}/PKG-INFO +1 -3
  4. spotdown-0.0.8/SpotDown.egg-info/entry_points.txt +2 -0
  5. {spotdown-0.0.7 → spotdown-0.0.8}/setup.py +3 -3
  6. spotdown-0.0.7/SpotDown.egg-info/entry_points.txt +0 -2
  7. {spotdown-0.0.7 → spotdown-0.0.8}/LICENSE +0 -0
  8. {spotdown-0.0.7 → spotdown-0.0.8}/MANIFEST.in +0 -0
  9. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/__init__.py +0 -0
  10. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/downloader/__init__.py +0 -0
  11. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/downloader/youtube_downloader.py +0 -0
  12. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/__init__.py +0 -0
  13. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/spotify_extractor.py +0 -0
  14. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/extractor/youtube_extractor.py +0 -0
  15. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/main.py +0 -0
  16. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/__init__.py +0 -0
  17. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/config_json.py +0 -0
  18. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/console_utils.py +0 -0
  19. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/file_utils.py +0 -0
  20. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown/utils/headers.py +0 -0
  21. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/SOURCES.txt +0 -0
  22. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/dependency_links.txt +0 -0
  23. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/requires.txt +0 -0
  24. {spotdown-0.0.7 → spotdown-0.0.8}/SpotDown.egg-info/top_level.txt +0 -0
  25. {spotdown-0.0.7 → spotdown-0.0.8}/requirements.txt +0 -0
  26. {spotdown-0.0.7 → spotdown-0.0.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SpotDown
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Home-page: https://github.com/Arrowar/SpotDown
5
5
  Author: Arrowar
6
6
  Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
@@ -27,8 +27,6 @@ Dynamic: project-url
27
27
  Dynamic: requires-dist
28
28
  Dynamic: requires-python
29
29
 
30
- # SpotDown 🎵
31
-
32
30
  <div align="center">
33
31
 
34
32
  ## 📊 Project Status & Info
@@ -1,5 +1,3 @@
1
- # SpotDown 🎵
2
-
3
1
  <div align="center">
4
2
 
5
3
  ## 📊 Project Status & Info
@@ -150,4 +148,4 @@ This software is provided "as is", without warranty of any kind, express or impl
150
148
 
151
149
  *If you find this project useful, consider starring it! ⭐*
152
150
 
153
- </div>
151
+ </div>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SpotDown
3
- Version: 0.0.7
3
+ Version: 0.0.8
4
4
  Home-page: https://github.com/Arrowar/SpotDown
5
5
  Author: Arrowar
6
6
  Project-URL: Bug Reports, https://github.com/Arrowar/SpotDown/issues
@@ -27,8 +27,6 @@ Dynamic: project-url
27
27
  Dynamic: requires-dist
28
28
  Dynamic: requires-python
29
29
 
30
- # SpotDown 🎵
31
-
32
30
  <div align="center">
33
31
 
34
32
  ## 📊 Project Status & Info
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ spotdown = SpotDown.main:main
@@ -20,7 +20,7 @@ def get_version():
20
20
  version_match = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]", f.read(), re.M)
21
21
  if version_match:
22
22
  return version_match.group(1)
23
- raise RuntimeError("Unable to find version string in SpotDown/upload/version.py.")
23
+
24
24
 
25
25
  setup(
26
26
  name="SpotDown",
@@ -34,7 +34,7 @@ setup(
34
34
  python_requires='>=3.8',
35
35
  entry_points={
36
36
  "console_scripts": [
37
- "SpotDown=SpotDown.run:main",
37
+ "spotdown=SpotDown.main:main",
38
38
  ],
39
39
  },
40
40
  include_package_data=True,
@@ -43,4 +43,4 @@ setup(
43
43
  "Bug Reports": "https://github.com/Arrowar/SpotDown/issues",
44
44
  "Source": "https://github.com/Arrowar/SpotDown",
45
45
  }
46
- )
46
+ )
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- SpotDown = SpotDown.run:main
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes