-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.65 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
[project]
name = "ai-dev-os"
version = "0.1.0"
description = "Autonomous AI Development Operating System — orchestrates agents, training, simulation, and integrations."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"aiohttp>=3.13.3",
"anthropic>=0.86.0",
"click>=8.3.1",
"httpx>=0.28.1",
"jsonschema>=4.26.0",
"langchain>=1.2.13",
"langchain-community>=0.4.1",
"langgraph>=1.1.3",
"prometheus-client>=0.24.1",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pygithub>=2.8.1",
"python-dotenv>=1.2.2",
"python-json-logger>=4.0.0",
"pyyaml>=6.0.3",
"rich>=14.3.3",
"sentry-sdk>=2.55.0",
"slack-sdk>=3.41.0",
"tiktoken>=0.12.0",
"torch>=2.10.0",
"transformers>=5.3.0",
"modal>=0.62.0",
"docker>=7.1.0",
]
[dependency-groups]
dev = [
"bandit>=1.9.4",
"black>=26.3.1",
"flake8>=7.3.0",
"isort>=8.0.1",
"mypy>=1.19.1",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ai_dev_os", "src/integrations"]
# ─── Tool Configuration ─────────────────────────────────────────
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
strict = false
[tool.flake8]
max-line-length = 100
extend-ignore = ["E501"]