-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (56 loc) · 1.37 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
[tool.poetry]
name = "scint"
version = "0.1.0"
description = ""
authors = ["Tim Kaechle <[email protected]>"]
readme = "README.md"
packages = [{ include = "src" }]
[project]
name = "scint"
version = "0.1.0"
description = "Add your description here"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT License" }
requires-python = ">=3.10"
dependencies = [
"aiofiles>=24.1.0",
"aiohttp>=3.10.10",
"anthropic>=0.39.0",
"meilisearch-python-sdk>=3.6.1",
"meilisearch>=0.31.6",
"openai>=1.55.2",
"psycopg2>=2.9.10",
"pydantic>=2.9.2",
"python-dotenv>=1.0.1",
"pyyaml>=6.0.2",
"redis>=5.2.0",
"tree-sitter>=0.23.2",
"tree-sitter-python>=0.23.3",
"uvicorn>=0.32.0",
"websockets>=14.0",
"chonkie>=0.1.2",
"numpy>=2.1.3",
"ruff>=0.8.0",
"rich>=13.9.4",
"nltk>=3.9.1",
]
[project.scripts]
scint = "src.app:main"
[tool.pyright]
venvPath = ".venv"
venv = "."
reportMissingImports = true
reportSyntaxErrors = true
reportMissingTypeStubs = false
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnknownArgumentType = false
reportUnknownLambdaType = "none"
reportMissingModuleSource = true
reportGeneralTypeIssues = false
typeCheckingMode = "off"
[tool.ruff.lint]
ignore = ["E731"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"