-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.1 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
[build-system]
requires = ["setuptools >= 65.5.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9,<4"
name = "semkon"
dependencies = [
"chromadb==0.6.*",
"gitignore-parser==0.1.*",
"loguru==0.7.*",
"openai==1.60.*",
"pydantic==2.10.*",
"pydantic-settings",
"pydeps==3.0.*",
"RestrictedPython==8.0",
"sympy==1.13.*",
"tiktoken==0.8.*",
"typer==0.15.*",
"wrapt-timeout-decorator==1.5.*",
]
version = "0.0.0"
[project.optional-dependencies]
dev = [
"black",
"isort",
"pyright",
]
[project.scripts]
semkon = "semkon.main:cli"
[tool.setuptools.packages.find]
include = ["semkon"]
namespaces = false
[tool.black]
line-length = 80
[tool.isort]
profile = "black"
line_length = 80
lines_after_imports = 2
combine_as_imports = true
[tool.pyright]
reportIncompatibleVariableOverride = true
reportIncompatibleMethodOverride = true
useLibraryCodeForTypes = true
strictListInference = true
strictDictionaryInference = true
strictSetInference = true
exclude = ["tests/example_repo"]
[tool.ruff]
lint.select = ["F401"]
line-length = 80