20 lines
412 B
TOML
20 lines
412 B
TOML
[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"]
|