Код для lab2

This commit is contained in:
2026-03-03 10:21:13 +03:00
parent 07e02401eb
commit 60a4471a8c
11 changed files with 1050 additions and 0 deletions

19
lab2/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "lab2"
version = "0.1.0"
description = "Authentication, authorization and brute force research system"
readme = "README.md"
requires-python = ">=3.14"
dependencies = []
[project.scripts]
usermgr = "usermgr:main"
access = "access:main"
bruteforce = "bruteforce:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["*.py"]