-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.53 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
[tool.poetry]
name = "codesage"
version = "0.2.0"
description = "A tool for code analysis and risk assessment."
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
tree-sitter = ">=0.25,<0.26"
tree-sitter-go = ">=0.25,<0.26"
tree-sitter-python = ">=0.25,<0.26"
click = ">=8.1.0"
pyyaml = ">=6.0"
pytest = ">=7.0"
pytest-cov = ">=4.0"
pytest-benchmark = ">=4.0"
hypothesis = ">=6.0"
structlog = ">=21.5.0"
gitignore-parser = ">=0.1.8"
pydantic = ">=2.0"
jsonschema = "^4.25.1"
jinja2 = "^3.1.6"
pygments = "^2.19.2"
networkx = ">=2.5,<3.0"
questionary = "^2.0.1"
rich = "^13.7.1"
lxml = ">=4.9.1"
fastapi = "^0.103.2"
uvicorn = "^0.23.2"
httpx = "^0.25.0"
openai = "^2.8.1"
anthropic = "^0.74.1"
backoff = "^2.2.1"
tree-sitter-bash = "^0.25.0"
tiktoken = "^0.12.0"
python-multipart = "^0.0.20"
playwright = "^1.56.0"
sqlalchemy = "^2.0.44"
alembic = "^1.17.2"
tree-sitter-java = "^0.23.5"
gitpython = "^3.1.45"
pytest-httpserver = "^1.1.3"
redis = "^5.0.0"
psycopg2-binary = "^2.9.9"
msgpack = "^1.0.7"
watchdog = "^3.0.0"
[tool.poetry.dev-dependencies]
black = ">=22.3.0"
ruff = ">=0.0.275"
pre-commit = ">=2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
codesage = "codesage.cli.main:main"