quivr/docs/pyproject.toml
Stan Girard 7acb52a963
feat(quivr-core): beginning (#3388)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2024-10-21 00:50:31 -07:00

47 lines
1017 B
TOML

[project]
name = "docs"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "Stan Girard", email = "stan@quivr.app" }
]
dependencies = [
"quivr-core>=0.0.18",
"mkdocs>=1.6.1",
"mkdocstrings[python]>=0.26.0",
"mkdocs-jupyter>=0.24.8",
"mkdocs-include-dir-to-nav>=1.2.0",
"mkdocs-material>=9.5.34",
"mkdocs-redirects>=1.2.1",
]
readme = "README.md"
requires-python = ">= 3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
virtual = true
[tool.rye.scripts]
docs = "mkdocs serve"
build_docs = "mkdocs build --strict"
[tool.basedpyright]
include = ["src/"]
# Ensure that it uses the .venv that we created for this project with the lockfile
venvPath="./"
venv=".venv"
# We really only care about some import issues, so we disable everything and report on missing imports:
typeCheckingMode = "off"
reportMissingImports = true
[tool.hatch.metadata]
allow-direct-references = true