Files
doczyai-pipelines/streamlit_multipage/pyproject.toml
T

35 lines
637 B
TOML
Raw Normal View History

[tool.poetry]
name = "streamlit_multipage"
version = "0.1.0"
description = ""
authors = ["Michael McGuinness <mmcguinness@aarete.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "3.12.7"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
mypy = "^1.12.0"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py312']
[tool.mypy]
disable_error_code = ["arg-type","import-untyped","import-not-found"]
[tool.pytest.ini_options]
testpaths = [
"tests"
]