mirror of
https://github.com/Misterio77/Foundry.git
synced 2026-08-28 18:14:13 -05:00
32 lines
535 B
TOML
32 lines
535 B
TOML
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "foo-bar"
|
|
version = "0.1.0"
|
|
authors = []
|
|
description = ""
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.3"
|
|
ruff = "0.6.1"
|
|
mypy = "^1.11"
|
|
python-lsp-server = "^1.12"
|
|
pylsp-mypy = "^0.6"
|
|
|
|
[tool.poetry.scripts]
|
|
foo-bar = "foo_bar.__main__:main"
|
|
|
|
[tool.ruff]
|
|
line-length = 88
|
|
[tool.mypy]
|
|
files = "."
|
|
strict = true
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests/*"]
|
|
pythonpath = ["."]
|