File size: 1,038 Bytes
8cb1a87
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "builderbrain"
version = "0.1.0"
description = "Dual-rail compositional AI system"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
    # Runtime dependencies
    "torch>=2.0.0",
    "transformers>=4.35.0",
    "numpy>=1.25.0",
    "pyyaml>=6.0.0",
    "streamlit>=1.50.0",
    "plotly>=6.3.0",
    "fastapi>=0.118.0",
    "uvicorn>=0.37.0",
    "pandas>=2.3.3",
    "psutil>=7.1.0",
    "datasets>=4.1.1",
    "accelerate>=1.10.1",
    "wandb>=0.22.1",
    "gradio>=5.47.2",
    "huggingface-hub>=0.35.3",
]

[dependency-groups]
dev = [
    # Development tools
    "black>=23.0.0",
    "isort>=5.12.0",
    "flake8>=6.0.0",
    "pytest>=7.4.0",
    "pytest-cov>=4.0.0",
    "mypy>=1.5.0",
    "pre-commit>=3.3.0",
]

[tool.black]
line-length = 88
target-version = ['py311']

[tool.isort]
profile = "black"
line_length = 88

[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true

[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = [
    "tests",
]