2023-01-30 09:16:43 +02:00
|
|
|
[tool.poetry]
|
2023-09-19 19:17:07 +02:00
|
|
|
name = "stark-engine"
|
2023-09-18 08:06:23 +02:00
|
|
|
version = "4.0.0"
|
2023-01-30 09:16:43 +02:00
|
|
|
description = ""
|
2023-09-19 18:24:53 +02:00
|
|
|
authors = ["MarkParker5 <mark@parker-programs.com>"]
|
2023-09-18 08:06:23 +02:00
|
|
|
license = "CC BY-NC-SA 4.0"
|
2023-01-30 09:16:43 +02:00
|
|
|
readme = "README.md"
|
2023-09-14 11:50:09 +02:00
|
|
|
packages = [{include = "stark"}]
|
2023-09-19 19:17:07 +02:00
|
|
|
homepage = "https://pypi.org/project/stark-engine/"
|
2023-09-19 18:24:53 +02:00
|
|
|
repository = "https://github.com/MarkParker5/STARK"
|
|
|
|
documentation = "https://stark.markparker.me"
|
|
|
|
keywords = ["python", "open-source", "natural-language-processing", "framework", "cross-platform", "natural-language", "voice", "voice-commands", "python3", "voice-recognition", "speech-recognition", "speech-to-text", "community-project", "voice-assistant", "voice-interface", "NLP", "machine-learning", "AI", "text-analysis", "stark", "stark-place", "mark parker"]
|
|
|
|
|
2023-01-30 09:16:43 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
2023-02-12 19:33:23 +02:00
|
|
|
pydantic = "^1.10.4"
|
2023-09-15 13:08:14 +02:00
|
|
|
asyncer = "^0.0.2"
|
|
|
|
|
|
|
|
# Optional dependencies
|
|
|
|
numpy = { version = "^1.24.1", optional = true }
|
|
|
|
sounddevice = { version = "^0.4.5", optional = true }
|
|
|
|
soundfile = { version = "^0.11.0", optional = true }
|
2023-09-15 13:29:13 +02:00
|
|
|
vosk = { version = "0.3.44", optional = true }
|
2023-09-15 13:08:14 +02:00
|
|
|
google-cloud-texttospeech = { version = "^2.14.1", optional = true }
|
|
|
|
torch = { version = "^1.13.1", optional = true }
|
2023-09-19 18:51:35 +02:00
|
|
|
mkdocs-material = { version = "^9.2.8", optional = true, extras = ["imaging"] }
|
2023-09-19 13:18:54 +02:00
|
|
|
mkdocs-git-revision-date-localized-plugin = { version = "^1.2.0", optional = true }
|
2023-09-15 13:08:14 +02:00
|
|
|
|
|
|
|
[tool.poetry.extras]
|
|
|
|
gcloud = ["google-cloud-texttospeech", "sounddevice", "soundfile"]
|
|
|
|
vosk = ["vosk", "sounddevice"]
|
|
|
|
silero = ["torch", "numpy", "sounddevice"]
|
|
|
|
sound = ["sounddevice", "soundfile"]
|
2023-09-19 13:18:54 +02:00
|
|
|
docs = ["mkdocs-material", "mkdocs-git-revision-date-localized-plugin"]
|
2023-01-30 09:16:43 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2023-09-15 16:49:02 +02:00
|
|
|
# tests and static validation
|
|
|
|
pytest = "^7.2.1"
|
|
|
|
mypy = "^1.1.1"
|
|
|
|
pytest-asyncio = "^0.21.1"
|
|
|
|
pytest-trio = "^0.8.0"
|
2023-09-16 12:12:33 +02:00
|
|
|
pytest-repeat = "^0.9.1"
|
2023-06-28 18:19:19 +02:00
|
|
|
|
2023-01-30 09:16:43 +02:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
2023-09-16 07:10:07 +02:00
|
|
|
pythonpath = ["stark",]
|
2023-09-15 16:49:02 +02:00
|
|
|
# asyncio_mode = "auto"
|
|
|
|
trio_mode = "true"
|
2023-09-16 07:10:07 +02:00
|
|
|
filterwarnings = [
|
|
|
|
"once"
|
|
|
|
]
|
2023-03-16 19:23:29 +02:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
ignore_missing_imports = true
|
|
|
|
exclude = [
|
2023-09-15 13:08:14 +02:00
|
|
|
"stark/core/types/Time.*",
|
|
|
|
"stark/core/types/Number.*",
|
2023-05-11 22:20:59 +02:00
|
|
|
]
|