-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 860 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 860 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
32
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "nexus"
version = "0.1.0"
description = "Autonomous Software Factory - AI agents collaborate to build complete projects"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.92.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"httpx>=0.28.0",
"pydantic>=2.10.0",
"pydantic-settings>=2.7.0",
"rich>=13.9.0",
"click>=8.1.0",
"aiosqlite>=0.21.0",
"aiofiles>=24.1.0",
"jinja2>=3.1.0",
"networkx>=3.4.0",
]
[project.scripts]
nexus = "nexus.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/nexus"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
]