pyquoks 0.0.0__tar.gz → 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.
pyquoks-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyquoks
3
+ Version: 1.0.0
4
+ Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
+ Home-page: https://diquoks.ru
6
+ Author: Denis Titovets
7
+ Author-email: den232titovets@yandex.ru
8
+ Project-URL: Bug Tracker, https://github.com/diquoks/pyquoks/issues
9
+ Project-URL: Repository, https://github.com/diquoks/pyquoks
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: certifi==2025.8.3
15
+ Requires-Dist: charset-normalizer==3.4.3
16
+ Requires-Dist: idna==3.10
17
+ Requires-Dist: pillow==11.3.0
18
+ Requires-Dist: requests==2.32.5
19
+ Requires-Dist: urllib3==2.5.0
20
+ Dynamic: license-file
21
+
22
+ # pyquoks
23
+
24
+ #### Пакет PyPI для часто используемых модулей в проектах diquoks
25
+
26
+ ---
27
+
28
+ ## Оглавление
29
+
30
+ - [Контакты](#контакты)
31
+ - [Связь с разработчиком](#связь-с-разработчиком)
32
+ - [Прочие ссылки](#прочие-ссылки)
33
+
34
+ ---
35
+
36
+ ## Контакты
37
+
38
+ #### Связь с разработчиком
39
+
40
+ - [Telegram для связи](https://t.me/diquoks)
41
+ - [Почта для связи](mailto:diquoks@yandex.ru)
42
+
43
+ #### Прочие ссылки
44
+
45
+ - [Telegram-канал с новостями](https://t.me/diquoks_channel)
@@ -0,0 +1,6 @@
1
+ certifi==2025.8.3
2
+ charset-normalizer==3.4.3
3
+ idna==3.10
4
+ pillow==11.3.0
5
+ requests==2.32.5
6
+ urllib3==2.5.0
@@ -0,0 +1,29 @@
1
+ [metadata]
2
+ name = pyquoks
3
+ version = 1.0.0
4
+ author = Denis Titovets
5
+ author_email = den232titovets@yandex.ru
6
+ description = Пакет PyPI для часто используемых модулей в проектах diquoks
7
+ long_description = file: README.md
8
+ long_description_content_type = text/markdown
9
+ url = https://diquoks.ru
10
+ project_urls =
11
+ Bug Tracker = https://github.com/diquoks/pyquoks/issues
12
+ Repository = https://github.com/diquoks/pyquoks
13
+ classifiers =
14
+ Programming Language :: Python :: 3
15
+
16
+ [options]
17
+ package_dir =
18
+ = src
19
+ packages = find:
20
+ python_requires = >=3.10
21
+ install_requires = file: requirements.txt
22
+
23
+ [options.packages.find]
24
+ where = src
25
+
26
+ [egg_info]
27
+ tag_build =
28
+ tag_date = 0
29
+
@@ -0,0 +1 @@
1
+ import data, models, utils
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
  import configparser, datetime, logging, winreg, json, sys, io, os
3
3
  import requests, PIL.Image, PIL.ImageDraw
4
- from . import utils
4
+ import utils
5
5
 
6
6
 
7
7
  # Providers
@@ -0,0 +1,45 @@
1
+ Metadata-Version: 2.4
2
+ Name: pyquoks
3
+ Version: 1.0.0
4
+ Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
+ Home-page: https://diquoks.ru
6
+ Author: Denis Titovets
7
+ Author-email: den232titovets@yandex.ru
8
+ Project-URL: Bug Tracker, https://github.com/diquoks/pyquoks/issues
9
+ Project-URL: Repository, https://github.com/diquoks/pyquoks
10
+ Classifier: Programming Language :: Python :: 3
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: certifi==2025.8.3
15
+ Requires-Dist: charset-normalizer==3.4.3
16
+ Requires-Dist: idna==3.10
17
+ Requires-Dist: pillow==11.3.0
18
+ Requires-Dist: requests==2.32.5
19
+ Requires-Dist: urllib3==2.5.0
20
+ Dynamic: license-file
21
+
22
+ # pyquoks
23
+
24
+ #### Пакет PyPI для часто используемых модулей в проектах diquoks
25
+
26
+ ---
27
+
28
+ ## Оглавление
29
+
30
+ - [Контакты](#контакты)
31
+ - [Связь с разработчиком](#связь-с-разработчиком)
32
+ - [Прочие ссылки](#прочие-ссылки)
33
+
34
+ ---
35
+
36
+ ## Контакты
37
+
38
+ #### Связь с разработчиком
39
+
40
+ - [Telegram для связи](https://t.me/diquoks)
41
+ - [Почта для связи](mailto:diquoks@yandex.ru)
42
+
43
+ #### Прочие ссылки
44
+
45
+ - [Telegram-канал с новостями](https://t.me/diquoks_channel)
@@ -1,7 +1,8 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- src/__init__.py
4
+ requirements.txt
5
+ setup.cfg
5
6
  src/pyquoks/__init__.py
6
7
  src/pyquoks/data.py
7
8
  src/pyquoks/models.py
@@ -9,4 +10,5 @@ src/pyquoks/utils.py
9
10
  src/pyquoks.egg-info/PKG-INFO
10
11
  src/pyquoks.egg-info/SOURCES.txt
11
12
  src/pyquoks.egg-info/dependency_links.txt
13
+ src/pyquoks.egg-info/requires.txt
12
14
  src/pyquoks.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ certifi==2025.8.3
2
+ charset-normalizer==3.4.3
3
+ idna==3.10
4
+ pillow==11.3.0
5
+ requests==2.32.5
6
+ urllib3==2.5.0
@@ -0,0 +1 @@
1
+ pyquoks
pyquoks-0.0.0/PKG-INFO DELETED
@@ -1,5 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pyquoks
3
- Version: 0.0.0
4
- License-File: LICENSE
5
- Dynamic: license-file
pyquoks-0.0.0/setup.cfg DELETED
@@ -1,4 +0,0 @@
1
- [egg_info]
2
- tag_build =
3
- tag_date = 0
4
-
@@ -1 +0,0 @@
1
- from pyquoks import data, models, utils
File without changes
@@ -1,5 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: pyquoks
3
- Version: 0.0.0
4
- License-File: LICENSE
5
- Dynamic: license-file
@@ -1,2 +0,0 @@
1
- __init__
2
- pyquoks
File without changes
File without changes
File without changes
File without changes
File without changes