-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 923 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 923 Bytes
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
[project]
name = "codesmart"
version = "0.1.2"
description = "Codebase intelligence system with CLI and MCP interfaces"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
[project.optional-dependencies]
ml = ["gliner2"]
[project.scripts]
codesmart = "codesmart.cli.app:main"
test = "codesmart.cli.test_runner:main"
lint = "codesmart.cli.lint_runner:main"
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["codesmart", "codesmart.cli", "codesmart.models", "codesmart.index", "codesmart.index.callgraph_core", "codesmart.index.callgraph_core.adapters", "codesmart.index.parser", "codesmart.enrich", "codesmart.store", "codesmart.query", "codesmart.mcp", "codesmart.git"]
[tool.ruff]
target-version = "py312"
line-length = 100
exclude = ["eval-repos"]
[tool.ruff.lint]
select = ["E", "W", "F", "I", "UP"]
ignore = ["E402", "E501"]