-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.46 KB
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
39
40
41
42
43
44
45
46
[project]
name = "nlp-assistant"
version = "0.1.0"
description = ""
authors = [
{name = "Jannes Kurzke",email = "janneskurzke@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.12,<3.15,<3.15"
dependencies = [
"pandas (>=2.3.3,<3.0.0)",
"regex (>=2025.11.3,<2026.0.0)",
"pytest (>=9.0.1,<10.0.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"requests (>=2.32.5,<3.0.0)",
"streamlit (>=1.51.0,<2.0.0)",
"joblib (>=1.5.2,<2.0.0)",
"scikit-learn (>=1.7.2,<2.0.0)",
"faster-whisper (>=1.2.1,<2.0.0)",
"spacy (>=3.8.11,<4.0.0)",
"pyttsx3 (>=2.99,<3.0)",
"nltk (>=3.9.2,<4.0.0)",
"piper-tts (>=1.3.0,<2.0.0)",
"de-core-news-sm @ https://github.com/explosion/spacy-models/releases/download/de_core_news_sm-3.8.0/de_core_news_sm-3.8.0-py3-none-any.whl",
"de-core-news-lg @ https://github.com/explosion/spacy-models/releases/download/de_core_news_lg-3.8.0/de_core_news_lg-3.8.0-py3-none-any.whl",
"torch (>=2.6.0,<3.0.0)",
]
[tool.poetry]
packages = [{include = "nlp_assistant", from = "src"}]
[[tool.poetry.source]]
name = "pytorch_cu124"
url = "https://download.pytorch.org/whl/cu124"
priority = "explicit"
[tool.poetry.dependencies]
torch = {source = "pytorch_cu124"}
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
start = "nlp_assistant.main:main"
trainIntentRecognizerModel = "nlp_assistant.helper.IntentRecognizerController:trainIntentRecognizerModel"