1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00
STARK/pyproject.toml

47 lines
991 B
TOML
Raw Normal View History

2023-01-30 09:16:43 +02:00
[tool.poetry]
name = "majordom-va"
version = "0.1.0"
description = ""
authors = ["MarkParker5 <markparker.it@gmail.com>"]
2023-05-11 22:20:59 +02:00
license = "CC BY-NC-ND 4.0"
2023-01-30 09:16:43 +02:00
readme = "README.md"
packages = [{include = "majordom_va"}]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.3"
sounddevice = "^0.4.5"
soundfile = "^0.11.0"
numpy = "^1.24.1"
2023-02-12 19:33:23 +02:00
pydantic = "^1.10.4"
2023-06-28 17:38:20 +02:00
vosk = "0.3.44"
2023-02-12 19:33:23 +02:00
google-cloud-texttospeech = "^2.14.1"
2023-03-12 16:36:05 +02:00
torch = "^1.13.1"
2023-09-11 05:20:34 +02:00
mkdocs-material = "^9.2.8"
mkdocs-git-revision-date-localized-plugin = "^1.2.0"
mkdocs-swagger-ui-tag = "^0.6.4"
2023-01-30 09:16:43 +02:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
2023-03-16 19:23:29 +02:00
mypy = "^1.1.1"
2023-01-30 09:16:43 +02:00
2023-06-28 18:19:19 +02:00
[tool.poetry.extras]
examples = ["pynput"]
2023-01-30 09:16:43 +02:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"majordom_va",
2023-03-16 19:23:29 +02:00
]
[tool.mypy]
ignore_missing_imports = true
exclude = [
"majordom_va/features/legacy",
"majordom_va/VICore/VIObjects/VITime.*",
"majordom_va/VICore/VIObjects/VINumber.*",
2023-05-11 22:20:59 +02:00
]