Push first version

This commit is contained in:
kilyabin
2026-01-27 22:37:30 +04:00
parent f06c4143e9
commit 389176a342
9 changed files with 231 additions and 0 deletions

14
pyproject.toml Normal file
View File

@@ -0,0 +1,14 @@
[project]
name = "genpass"
version = "1.0.0"
description = "Secure password generator CLI"
authors = [{ name = "Ilya Kom" }]
readme = "README.md"
license = "MIT"
requires-python = ">= 3.8"
[project.scripts]
genpass = "genpass.cli:main"
[tool.setuptools]
packages = ["genpass"]