-
Notifications
You must be signed in to change notification settings - Fork 154
/
pyproject.toml
38 lines (33 loc) · 977 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "yodapa"
version = "2.0.2"
description = "Personal Assistant on the command line"
authors = ["Man Parvesh Singh Randhawa <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "yodapa", from = "src" }
]
repository = "https://github.com/yoda-pa/yoda/tree/v2"
homepage = "https://yoda-pa.github.io/yoda"
[tool.poetry.dependencies]
python = "^3.9"
pyyaml = "^6.0.2"
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.39"
ollama = "^0.3.3"
uvicorn = { extras = ["standard"], version = "^0.31.1" }
fastapi = { extras = ["standard"], version = "^0.115.0" }
supervisor = "^4.2.5"
sqlmodel = "^0.0.22"
requests = "^2.32.3"
speedtest-cli = "^2.1.3"
python-whois = "^0.9.4"
typer = "^0.12.5"
[tool.poetry.group.docs.dependencies]
mkdocstrings = { extras = ["python"], version = "^0.26.1" }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
yoda = "yodapa.yoda:app"