структура проекта и __init__.py

This commit is contained in:
2026-03-31 22:03:37 +03:00
commit a9b8f8bb60
9 changed files with 24 additions and 0 deletions

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
__pycache__/
*.pyc
venv/
.vscode/
.idea/
*.log
.DS_Store
/tmp/

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# MyPkg - Менеджер пакетов для Linux
Курсовая работа.

0
mypkg/__init__.py Normal file
View File

0
mypkg/cli/__init__.py Normal file
View File

0
mypkg/core/__init__.py Normal file
View File

View File

0
mypkg/models/__init__.py Normal file
View File

0
mypkg/utils/__init__.py Normal file
View File

13
setup.py Normal file
View File

@@ -0,0 +1,13 @@
from setuptools import setup, find_packages
setup(
name="mypkg",
version="0.1.0",
description="Менеджер пакетов для Linux",
packages=find_packages(),
entry_points={
'console_scripts': [
'mypkg=mypkg.cli.main:main',
],
},
)