mirror of
https://github.com/abrendan/NochuSearch.git
synced 2025-06-15 20:15:26 +02:00
26 lines
630 B
TOML
26 lines
630 B
TOML
[tool.poetry]
|
|
name = "python-template"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.10.0,<3.11"
|
|
flask = "^3.0.0"
|
|
gunicorn = "^21.2.0"
|
|
requests = "^2.31.0"
|
|
beautifulsoup4 = "^4.12.3"
|
|
|
|
[tool.pyright]
|
|
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
|
|
useLibraryCodeForTypes = true
|
|
exclude = [".cache"]
|
|
|
|
[tool.ruff]
|
|
# https://beta.ruff.rs/docs/configuration/
|
|
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
|
|
ignore = ['W291', 'W292', 'W293']
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |