-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.12 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
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-dev-assistant"
version = "0.1.0"
description = "Repository-aware AI-powered developer assistant for code understanding, debugging, and reasoning"
requires-python = ">=3.11"
# --------------------------------------------------
# Runtime dependencies (installed by default)
# --------------------------------------------------
dependencies = [
"numpy",
"faiss-cpu",
"PyYAML",
"openai",
"tiktoken",
"structlog",
]
# --------------------------------------------------
# Optional / dev dependencies
# --------------------------------------------------
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.pyright]
typeCheckingMode = "off"
[tool.ruff]
line-length = 127
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle
"W", # pycodestyle
"I", # isort
"B", # bugbears
"N", # pep8-naming
]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"