25 lines
507 B
TOML
25 lines
507 B
TOML
[project]
|
|
name = "DocuMentor"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pyqtdarktheme>=2.1.0",
|
|
"pydantic-settings>=2.9.1",
|
|
"pyside6>=6.9.1",
|
|
"polars>=1.31.0",
|
|
"pydantic-yaml>=1.5.1",
|
|
"connectorx>=0.4.3",
|
|
]
|
|
|
|
[tool.ruff]
|
|
# Extend the `pyproject.toml` file in the parent directory...
|
|
# extend = "../pyproject.toml"
|
|
|
|
# ...but use a different line length.
|
|
line-length = 120
|
|
|
|
[dependency-groups]
|
|
dev = []
|