pass-gen/pyproject.toml
dependabot[bot] 61db2b794f
chore(deps-dev): bump black from 22.8.0 to 24.3.0
Bumps [black](https://github.com/psf/black) from 22.8.0 to 24.3.0.
- [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/22.8.0...24.3.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
2024-03-20 17:15:36 +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 = "^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"