-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (35 loc) · 1.03 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
[tool.poetry]
name = "TTL"
version = "1.1.5"
license = "MIT"
description = "Todo Task List application combined with an AI assistant."
authors = ["Ismael Mousa <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = "^0.105.0"
uvicorn = { extras = ["standard"], version = "^0.25.0" }
pyyaml = "^6.0.1"
sqlalchemy = "^2.0.25"
psycopg2-binary = "^2.9.9"
httpx = "^0.26.0"
transformers = {extras = ["sentencepiece"], version = "^4.40.2"}
[tool.poetry.group.dev.dependencies]
pylint = "^3.0.3"
pytest = "^7.4.3"
pytest-cov = "^4.1.0"
testfixtures = "^7.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "*.py"
norecursedirs = "__init__.py"
[tool.coverage.run]
source = ["."]
omit = ["main.py", "*/__init__.py", "tests/*", ".venv/*"]
[tool.pylint]
disable = ["C0114", "C0209", "W0511", "W0707", "W0718", "W1203", "W1514", "R0801", "R0903", "R0904"]
ignore-paths = [".venv"]
max-line-length = 100