pass-gen/pyproject.toml
dependabot[bot] 4bf1d6989b
chore(deps-dev): bump pytest from 7.1.3 to 9.0.3
Bumps [pytest](https://github.com/pytest-dev/pytest) from 7.1.3 to 9.0.3.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest/compare/7.1.3...9.0.3)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 9.0.3
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-13 19:14:39 +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 = "^24.3.0"
Faker = "^14.2.1"
flake8 = "^5.0.4"
isort = "^5.10.1"
mypy = "^0.971"
pytest = "^9.0.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"