-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (78 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (78 loc) · 2.06 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
81
82
83
84
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gitvoyant"
version = "0.3.0"
description = "AI Agent Platform for Temporal Code Intelligence"
authors = [{name = "Jesse Moses", email = "jesse@bytestacklabs.com"}]
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Core GitVoyant Dependencies
"gitpython>=3.1.0",
"pandas>=2.0.0",
"numpy>=1.20.0",
"matplotlib>=3.5.0",
"seaborn>=0.11.0",
# CLI Framework
"typer>=0.9.0",
# API & Web Framework
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.5.0",
"pydantic-settings>=2.1.0",
"python-multipart>=0.0.6",
"httpx>=0.25.0",
"python-dotenv>=1.0.0",
"python-dateutil>=2.8.2",
# LangChain & AI Agent Dependencies
"langchain>=0.3.0",
"langchain-core>=0.3.0",
"langchain-community>=0.3.0",
"langchain-anthropic>=1.0.0",
"langgraph>=0.0.28",
# AI Model Integrations
"anthropic>=0.80.0",
# Additional Agent Tools
"tiktoken>=0.6.0",
"rich>=13.0.0",
# Multi-language analysis (tree-sitter)
"tree-sitter>=0.24.0",
"tree-sitter-javascript>=0.23.0",
"tree-sitter-java>=0.23.0",
"tree-sitter-go>=0.23.0",
]
[project.urls]
Homepage = "https://github.com/Cre4T3Tiv3/gitvoyant"
Repository = "https://github.com/Cre4T3Tiv3/gitvoyant"
[tool.hatch.build.targets.wheel]
packages = ["src/gitvoyant"]
[dependency-groups]
dev = [
# Testing & Code Quality
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
# Development Tools
"jupyter>=1.0.0",
"ipython>=8.0.0",
# Documentation
"mkdocs>=1.5.0",
"mkdocs-material>=9.0.0",
]
# Optional extras for different AI providers
[project.optional-dependencies]
anthropic = ["anthropic>=0.80.0"]
huggingface = ["transformers>=4.30.0", "torch>=2.0.0"]
all-ai = [
"anthropic>=0.80.0",
"transformers>=4.30.0",
"torch>=2.0.0",
"tiktoken>=0.6.0"
]
[project.scripts]
gitvoyant = "gitvoyant.cli.cli:app"