-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
80 lines (73 loc) · 2.23 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "codetide"
dynamic = ["version"]
description = "CodeTide is a fully local, privacy-preserving tool for parsing and understanding Python codebases using symbolic, structural analysis. No internet, no LLMs, no embeddings - just fast, explainable, and deterministic code intelligence."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Bruno V.", email = "bruno.vitorino@tecnico.ulisboa.pt" },
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"fastmcp==2.9.2",
"loguru==0.7.3",
"orjson==3.10.13",
"pathspec==0.12.1",
"pydantic==2.10.3",
"pygit2==1.18.0",
"pyyaml==6.0.2",
"tree-sitter-python==0.23.6",
"tree-sitter-typescript==0.23.2",
"tree-sitter==0.24.0",
"ulid==1.1",
]
[project.optional-dependencies]
agents = [
"aiofiles==23.2.1",
"core-for-ai>=0.1.98",
"prompt_toolkit==3.0.50",
"portalocker==3.2.0"
# Required for the agent-tide CLI entry point
]
visualization = [
"networkx==3.4.2",
"numpy==2.2.0",
"plotly==5.24.1",
]
agents-ui = [
"aiofiles==23.2.1",
"core-for-ai>=0.1.98",
"prompt_toolkit==3.0.50",
"portalocker==3.2.0",
# Required for the agent-tide CLI entry point
"chainlit==2.6.3",
"SQLAlchemy==2.0.36",
"asyncpg==0.30.0",
"docker==7.1.0"
]
[project.scripts]
codetide-mcp-server = "codetide.mcp.server:serve"
codetide-cli = "codetide.cli:main"
agent-tide-step = "codetide.agents.tide.cli_step:main"
agent-tide = "codetide.agents.tide.cli:main"
agent-tide-ui = "codetide.agents.tide.ui:main"
# agent-tide-step and agent-tide require the [agents] extra: pip install codetide[agents] or to execute uvx --from codetide[agents] agent-tide-step -h
[project.urls]
Homepage = "https://github.com/BrunoV21/CodeTide"
[tool.hatch.version]
path = "codetide/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/codetide",
]