mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-24 12:02:04 -05:00
38 lines
773 B
TOML
38 lines
773 B
TOML
[tool.poetry]
|
|
name = "flowsint-types"
|
|
version = "1.0.0"
|
|
description = "Pydantic models for flowsint"
|
|
license = "Apache-2.0"
|
|
authors = ["dextmorgn <contact@flowsint.io>"]
|
|
packages = [{ include = "flowsint_types", from = "src" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.12,<4.0"
|
|
pydantic = "^2.0"
|
|
email-validator = "^2.0"
|
|
phonenumbers = "^9.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4"
|
|
black = "^23.0"
|
|
isort = "^5.12"
|
|
flake8 = "^6.0"
|
|
mypy = "^1.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py311']
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
multi_line_output = 3
|
|
|
|
[tool.mypy]
|
|
python_version = "3.11"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true |