mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 12:35:00 +00:00
30 lines
525 B
TOML
30 lines
525 B
TOML
[project]
|
|
dependencies = [
|
|
"rich>=14.0.0",
|
|
]
|
|
name = "limbo"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
version = "0.1.0"
|
|
|
|
[tool.uv]
|
|
package = false
|
|
|
|
[tool.uv.sources]
|
|
limbo_test = { workspace = true }
|
|
|
|
[tool.uv.workspace]
|
|
members = ["testing", "scripts", "antithesis-tests", "bindings/python"]
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = [
|
|
"E", # pycodestyle errors
|
|
"W", # pycodestyle warings
|
|
"F", # pyflakes
|
|
'Q', # flake8-quotes
|
|
'C90', # mccabe
|
|
'I', # isort
|
|
]
|