1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
[tool.poetry]
name = "lazy-model"
version = "0.4.0"
description = ""
authors = ["Roman Right <roman-right@protonmail.com>"]
license = "Apache-2.0"
include = ["LICENSE"]
readme = "README.md"
packages = [{include = "lazy_model"}]
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
pydantic = ">=1.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
ignore_missing_imports = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|