ClipySave 1.0.0__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,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: ClipySave
3
+ Version: 1.0.0
4
+ Summary: Universal Video Downloader for YouTube, Instagram, and VK
5
+ Home-page: https://github.com/thetemirbolatov-official/ClipySave
6
+ Author: thetemirbolatov
7
+ Author-email: thetemirbolatov@mirajex.com
8
+ License: Proprietary
9
+ Project-URL: GitHub, https://github.com/thetemirbolatov-official
10
+ Project-URL: Instagram, https://instagram.com/thetemirbolatov
11
+ Project-URL: VK, https://vk.com/thetemirbolatov
12
+ Project-URL: Telegram, https://t.me/thetemirbolatov
13
+ Project-URL: Bug Tracker, https://github.com/thetemirbolatov-official/ClipySave/issues
14
+ Keywords: youtube instagram vk downloader video download clipysave
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: End Users/Desktop
18
+ Classifier: License :: Other/Proprietary License
19
+ Classifier: Natural Language :: Russian
20
+ Classifier: Natural Language :: English
21
+ Classifier: Operating System :: OS Independent
22
+ Classifier: Programming Language :: Python :: 3
23
+ Classifier: Programming Language :: Python :: 3.7
24
+ Classifier: Programming Language :: Python :: 3.8
25
+ Classifier: Programming Language :: Python :: 3.9
26
+ Classifier: Programming Language :: Python :: 3.10
27
+ Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Topic :: Multimedia :: Video
30
+ Classifier: Topic :: Software Development :: Libraries
31
+ Requires-Python: >=3.7
32
+ Description-Content-Type: text/markdown
33
+ Requires-Dist: yt-dlp>=2023.0.0
34
+ Requires-Dist: instaloader>=4.9.0
35
+ Requires-Dist: requests>=2.28.0
36
+ Requires-Dist: pywin32>=300
37
+ Dynamic: author
38
+ Dynamic: author-email
39
+ Dynamic: classifier
40
+ Dynamic: description
41
+ Dynamic: description-content-type
42
+ Dynamic: home-page
43
+ Dynamic: keywords
44
+ Dynamic: license
45
+ Dynamic: project-url
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+
50
+ Universal Video Downloader for YouTube, Instagram, and VK
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ ClipySave.egg-info/PKG-INFO
3
+ ClipySave.egg-info/SOURCES.txt
4
+ ClipySave.egg-info/dependency_links.txt
5
+ ClipySave.egg-info/entry_points.txt
6
+ ClipySave.egg-info/requires.txt
7
+ ClipySave.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ clipy-save = clipy_save:main_cli
@@ -0,0 +1,4 @@
1
+ yt-dlp>=2023.0.0
2
+ instaloader>=4.9.0
3
+ requests>=2.28.0
4
+ pywin32>=300
@@ -0,0 +1,2 @@
1
+ clipy_save
2
+ video_downloader
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: ClipySave
3
+ Version: 1.0.0
4
+ Summary: Universal Video Downloader for YouTube, Instagram, and VK
5
+ Home-page: https://github.com/thetemirbolatov-official/ClipySave
6
+ Author: thetemirbolatov
7
+ Author-email: thetemirbolatov@mirajex.com
8
+ License: Proprietary
9
+ Project-URL: GitHub, https://github.com/thetemirbolatov-official
10
+ Project-URL: Instagram, https://instagram.com/thetemirbolatov
11
+ Project-URL: VK, https://vk.com/thetemirbolatov
12
+ Project-URL: Telegram, https://t.me/thetemirbolatov
13
+ Project-URL: Bug Tracker, https://github.com/thetemirbolatov-official/ClipySave/issues
14
+ Keywords: youtube instagram vk downloader video download clipysave
15
+ Classifier: Development Status :: 4 - Beta
16
+ Classifier: Intended Audience :: Developers
17
+ Classifier: Intended Audience :: End Users/Desktop
18
+ Classifier: License :: Other/Proprietary License
19
+ Classifier: Natural Language :: Russian
20
+ Classifier: Natural Language :: English
21
+ Classifier: Operating System :: OS Independent
22
+ Classifier: Programming Language :: Python :: 3
23
+ Classifier: Programming Language :: Python :: 3.7
24
+ Classifier: Programming Language :: Python :: 3.8
25
+ Classifier: Programming Language :: Python :: 3.9
26
+ Classifier: Programming Language :: Python :: 3.10
27
+ Classifier: Programming Language :: Python :: 3.11
28
+ Classifier: Programming Language :: Python :: 3.12
29
+ Classifier: Topic :: Multimedia :: Video
30
+ Classifier: Topic :: Software Development :: Libraries
31
+ Requires-Python: >=3.7
32
+ Description-Content-Type: text/markdown
33
+ Requires-Dist: yt-dlp>=2023.0.0
34
+ Requires-Dist: instaloader>=4.9.0
35
+ Requires-Dist: requests>=2.28.0
36
+ Requires-Dist: pywin32>=300
37
+ Dynamic: author
38
+ Dynamic: author-email
39
+ Dynamic: classifier
40
+ Dynamic: description
41
+ Dynamic: description-content-type
42
+ Dynamic: home-page
43
+ Dynamic: keywords
44
+ Dynamic: license
45
+ Dynamic: project-url
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+
50
+ Universal Video Downloader for YouTube, Instagram, and VK
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,116 @@
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ Setup script for ClipySave - Video Downloader Library
6
+ Author: @thetemirbolatov
7
+ Company: MIRAJE X
8
+ Year: 2026
9
+ Version: 1.0.0
10
+ """
11
+
12
+ from setuptools import setup, find_packages
13
+ import os
14
+ import sys
15
+ from pathlib import Path
16
+
17
+ # Информация о пакете
18
+ VERSION = "1.0.0"
19
+ AUTHOR = "thetemirbolatov"
20
+ AUTHOR_EMAIL = "thetemirbolatov@mirajex.com"
21
+ DESCRIPTION = "Universal Video Downloader for YouTube, Instagram, and VK"
22
+
23
+ # Читаем README.md
24
+ readme_path = Path(__file__).parent / "README.md"
25
+ if readme_path.exists():
26
+ with open(readme_path, "r", encoding="utf-8") as f:
27
+ long_description = f.read()
28
+ else:
29
+ long_description = DESCRIPTION
30
+
31
+ # Зависимости
32
+ install_requires = [
33
+ "yt-dlp>=2023.0.0",
34
+ "instaloader>=4.9.0",
35
+ "requests>=2.28.0",
36
+ ]
37
+
38
+ if sys.platform == "win32":
39
+ install_requires.append("pywin32>=300")
40
+
41
+ setup(
42
+ # Основная информация
43
+ name="ClipySave",
44
+ version=VERSION,
45
+ author=AUTHOR,
46
+ author_email=AUTHOR_EMAIL,
47
+ description=DESCRIPTION,
48
+ long_description=long_description,
49
+ long_description_content_type="text/markdown",
50
+
51
+ # URL
52
+ url="https://github.com/thetemirbolatov-official/ClipySave",
53
+
54
+ # Социальные сети
55
+ project_urls={
56
+ "GitHub": "https://github.com/thetemirbolatov-official",
57
+ "Instagram": "https://instagram.com/thetemirbolatov",
58
+ "VK": "https://vk.com/thetemirbolatov",
59
+ "Telegram": "https://t.me/thetemirbolatov",
60
+ "Bug Tracker": "https://github.com/thetemirbolatov-official/ClipySave/issues",
61
+ },
62
+
63
+ # Пакеты
64
+ packages=find_packages(),
65
+ py_modules=["video_downloader", "clipy_save"],
66
+
67
+ # Зависимости
68
+ install_requires=install_requires,
69
+
70
+ # Классификаторы
71
+ classifiers=[
72
+ "Development Status :: 4 - Beta",
73
+ "Intended Audience :: Developers",
74
+ "Intended Audience :: End Users/Desktop",
75
+ "License :: Other/Proprietary License",
76
+ "Natural Language :: Russian",
77
+ "Natural Language :: English",
78
+ "Operating System :: OS Independent",
79
+ "Programming Language :: Python :: 3",
80
+ "Programming Language :: Python :: 3.7",
81
+ "Programming Language :: Python :: 3.8",
82
+ "Programming Language :: Python :: 3.9",
83
+ "Programming Language :: Python :: 3.10",
84
+ "Programming Language :: Python :: 3.11",
85
+ "Programming Language :: Python :: 3.12",
86
+ "Topic :: Multimedia :: Video",
87
+ "Topic :: Software Development :: Libraries",
88
+ ],
89
+
90
+ # Ключевые слова
91
+ keywords="youtube instagram vk downloader video download clipysave",
92
+
93
+ # Python версия
94
+ python_requires=">=3.7",
95
+
96
+ # Точки входа
97
+ entry_points={
98
+ "console_scripts": [
99
+ "clipy-save=clipy_save:main_cli",
100
+ ],
101
+ },
102
+
103
+ # Инклюды
104
+ include_package_data=True,
105
+ package_data={
106
+ "": ["*.txt", "*.md", "*.ico"],
107
+ },
108
+
109
+ # Лицензия
110
+ license="Proprietary",
111
+ )
112
+
113
+ print("\n" + "="*50)
114
+ print("ClipySave v1.0.0 - MIRAJE X 2026")
115
+ print("by @thetemirbolatov")
116
+ print("="*50 + "\n")