-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (65 loc) · 1.62 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "katia"
version = "0.1.1"
description = "Katia is a wonderfull assistant created for help people to iteract with the digital world"
authors = ["martingaldeca <[email protected]>"]
maintainers = ["martingaldeca <[email protected]>"]
packages = [
{ include = "katia" }
]
readme = "README.rst"
homepage = "https://katia.readthedocs.io/en/latest/"
repository = "https://github.com/martingaldeca/Katia"
documentation = "https://katia.readthedocs.io/en/latest/"
keywords = ["OPENAI", "chatgpt", "assistant", "voice"]
[tool.poetry.dependencies]
python = ">=3.8.0,<4.0.0"
speechrecognition = "3.9.0"
confluent-kafka = "2.0.2"
pyaudio = "0.2.13"
python-dotenv = "1.0.0"
PyYAML = "6.0"
googletrans = "3.1.0a0"
openai = "0.27.2"
boto3 = "1.26.90"
pygame = "2.2.0"
[tool.poetry.dev-dependencies]
ipython = "8.11.0"
pylint = "2.17.0"
black = "23.1.0"
isort = "5.12.0"
ipdb = "0.13.13"
pytest-cov = "4.0.0"
pytest-xdist = "3.2.1"
ruff = "0.0.257"
freezegun = "^1.2.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint]
max-line-length = 90
disable = ["C0114", "W0718", "R0902", "R0903"]
good-names = ['ex', ]
[tool.black]
line-length = 90
exclude = ["htmlcov", "venv", ".pytest_cache", ".ruff_cache", "docs"]
[tool.isort]
skip = "__init__.py"
src_paths = ["katia", "tests"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.coverage.run]
omit = [
"katia/logger_manager/*",
]
relative_files = true
[tool.ruff]
line-length = 90
exclude = [
".pytest_cache",
"venv",
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401", "F403"]