-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (46 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
49 lines (46 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
[project]
name = "secrin"
version = "0.1.0"
description = ""
authors = [{ name = "Jenil Savani", email = "jenil@secrinlabs.com" }]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi (>=0.120.1,<0.121.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"sqlalchemy (>=2.0.44,<3.0.0)",
"pydantic-settings (>=2.11.0,<3.0.0)",
"neo4j (>=6.0.2,<7.0.0)",
"tree-sitter (>=0.25.2,<0.26.0)",
"gitpython (>=3.1.45,<4.0.0)",
"tree-sitter-python (>=0.25.0,<0.26.0)",
"tree-sitter-javascript (>=0.25.0,<0.26.0)",
"tree-sitter-typescript (>=0.23.0,<0.24.0)",
"pygithub (>=2.8.1,<3.0.0)",
"numpy (>=2.3.5,<3.0.0)",
"requests (>=2.32.5,<3.0.0)",
"anthropic (>=0.40.0,<1.0.0)",
"google-generativeai (>=0.8.0,<1.0.0)",
"click (>=8.1.0,<9.0.0)",
"pyyaml (>=6.0,<7.0)",
"pytest (>=7.4.0,<8.0.0)",
"pytest-mock (>=3.12.0,<4.0.0)",
"rich (>=13.7.0,<14.0.0)",
"redis (>=5.0.0,<6.0.0)",
"rq (>=1.16.0,<2.0.0)",
"typer (>=0.12.0,<1.0.0)",
]
[tool.poetry]
packages = [{ include = "packages" }, { include = "scripts" }]
[tool.poetry.scripts]
migrate = "packages.database.graph.migrations.run_migrations:run_migrations"
server = "scripts.server:main"
setup = "scripts.setup:main"
ingest = "packages.ingest.full_ingest:main"
arc42gen = "packages.arc42gen.cli.commands:cli"
arc42gen-api = "scripts.arc42gen_api:main"
arc42gen-worker = "scripts.arc42gen_worker:main"
secrin = "packages.cli.main:app"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"