приведение кода к PEP 8, добавление комментариев, финальные правки

This commit is contained in:
2026-05-26 09:58:26 +03:00
parent 70c5e441ae
commit df8049e4a3
17 changed files with 647 additions and 170 deletions

5
mypkg.egg-info/PKG-INFO Normal file
View File

@@ -0,0 +1,5 @@
Metadata-Version: 2.4
Name: mypkg
Version: 0.1.0
Summary: Менеджер пакетов для Linux
Dynamic: summary

View File

@@ -0,0 +1,19 @@
README.md
setup.py
mypkg/__init__.py
mypkg.egg-info/PKG-INFO
mypkg.egg-info/SOURCES.txt
mypkg.egg-info/dependency_links.txt
mypkg.egg-info/entry_points.txt
mypkg.egg-info/top_level.txt
mypkg/cli/__init__.py
mypkg/cli/main.py
mypkg/core/__init__.py
mypkg/core/dependency_resolver.py
mypkg/core/package_manager.py
mypkg/database/__init__.py
mypkg/database/db_manager.py
mypkg/models/__init__.py
mypkg/models/package.py
mypkg/utils/__init__.py
mypkg/utils/colors.py

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,2 @@
[console_scripts]
mypkg = mypkg.cli.main:main

View File

@@ -0,0 +1 @@
mypkg