-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (74 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (74 loc) · 2.09 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Vibhu-OSKA"
version = "0.2.0"
description = "Autonomous AI Operating Layer — Self-hosted intelligence fabric for edge hardware"
authors = [{name = "Harsh Dev Jha (Inkesk-Dozing)", email = "inkeskdozing@gmail.com"}]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "Proprietary"}
dependencies = [
# ── Core Framework ──
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"websockets>=13.0",
# ── Serialization & Validation ──
"protobuf>=5.28.0",
"pydantic>=2.9.0",
# ── Event Bus ──
"pyzmq>=26.2.0",
# ── Configuration ──
"pyyaml>=6.0.2",
"python-dotenv>=1.0.1",
# ── Database & Memory ──
"chromadb>=0.5.0",
"aiosqlite>=0.20.0",
# ── Logging & Monitoring ──
"structlog>=24.4.0",
"rich>=13.9.0",
# ── AI/ML (installed separately for CUDA) ──
# torch, transformers, bitsandbytes, peft, unsloth
# installed via: pip install torch --index-url https://download.pytorch.org/whl/cu121
# ── Utilities ──
"httpx>=0.27.0",
"psutil>=6.1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.7.0",
"mypy>=1.13.0",
]
ml = [
"transformers>=4.46.0",
"datasets>=3.1.0",
"accelerate>=1.1.0",
"bitsandbytes>=0.44.0",
"peft>=0.13.0",
"sentencepiece>=0.2.0",
"onnxruntime>=1.20.0",
]
[project.scripts]
vibhu-oska = "Backend.EntryPoint:main"
vibhu-oska-mcp = "Backend.Gateway.McpServer:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["Backend*", "Frontend*", "Shared*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP"]
[tool.pytest.ini_options]
testpaths = ["Tests"]
asyncio_mode = "auto"
markers = [
"integration: marks tests that require isolated infrastructure (clean ZMQ ports, no live server)",
]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true