pass-gen/pyproject.toml
dependabot[bot] a01c78051e
chore(deps-dev): bump black from 24.3.0 to 26.3.1
Bumps [black](https://github.com/psf/black) from 24.3.0 to 26.3.1.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](https://github.com/psf/black/compare/24.3.0...26.3.1)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.3.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-03-12 20:25:40 +00:00

47 lines
930 B
TOML

[tool.poetry]
name = "pass-gen"
version = "0.1.0"
description = ""
authors = ["Ruidy <ruidy.nemausst@gmail.com>"]
readme = "README.md"
packages = [{include = "pass_gen"}]
[tool.poetry.dependencies]
pydantic = "^1.10.2"
typer = {extras = ["all"], version = "^0.6.1"}
python = "^3.10"
[tool.poetry.group.dev.dependencies]
bandit = "^1.7.4"
black = "^26.3.1"
Faker = "^14.2.1"
flake8 = "^5.0.4"
isort = "^5.10.1"
mypy = "^0.971"
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
vulture = "^2.6"
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
warn_unused_configs = true
no_implicit_optional = true
warn_unused_ignores = true
warn_unreachable = true
warn_redundant_casts = true
disallow_untyped_defs=true
plugins = ["pydantic.mypy"]
[tool.pydantic-mypy]
init_forbid_extra = true
init_typed = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"