-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
116 lines (106 loc) · 2.82 KB
/
pyproject.toml
File metadata and controls
116 lines (106 loc) · 2.82 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[project]
name = "orbit-memory"
version = "0.1.0"
description = "Intelligent-first memory decision engine for developers"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11,<4.0"
authors = [{ name = "Memory Infrastructure Team" }]
maintainers = [{ name = "Memory Infrastructure Team" }]
keywords = [
"memory",
"llm",
"ai",
"retrieval",
"personalization",
"fastapi",
"developer-tools",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: FastAPI",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"alembic>=1.14,<2.0",
"fastapi>=0.115,<1.0",
"httpx>=0.28,<1.0",
"numpy>=1.26,<2.0",
"openai>=1.61,<2.0",
"opentelemetry-api>=1.31,<2.0",
"opentelemetry-exporter-otlp>=1.31,<2.0",
"opentelemetry-instrumentation-fastapi>=0.52b0,<1.0",
"opentelemetry-instrumentation-httpx>=0.52b0,<1.0",
"opentelemetry-sdk>=1.31,<2.0",
"prometheus-client>=0.21,<1.0",
"psycopg[binary]>=3.2,<4.0",
"PyJWT>=2.10,<3.0",
"pydantic>=2.11,<3.0",
"slowapi>=0.1.9,<1.0",
"sqlalchemy>=2.0,<3.0",
"structlog>=25.5,<26.0",
"torch>=2.6,<3.0",
"uvicorn>=0.35,<1.0",
]
[project.urls]
Homepage = "https://github.com/Intina47/orbit"
Repository = "https://github.com/Intina47/orbit"
Documentation = "https://intina47.github.io/orbit/"
Issues = "https://github.com/Intina47/orbit/issues"
[project.scripts]
orbit-api = "orbit_api.__main__:main"
[dependency-groups]
dev = [
"black>=25.1,<26.0",
"isort>=5.13,<6.0",
"mypy>=1.14,<2.0",
"pylint>=4.0,<5.0",
"pytest>=8.3,<9.0",
"pytest-asyncio>=1.1,<2.0",
"pytest-benchmark>=5.1,<6.0",
"pytest-cov>=6.0,<7.0",
"ruff>=0.9,<1.0",
]
[project.optional-dependencies]
anthropic = ["anthropic>=0.39,<1.0"]
gemini = ["google-genai>=1.0,<2.0"]
ollama = ["ollama>=0.3,<1.0"]
llm-adapters = [
"anthropic>=0.39,<1.0",
"google-genai>=1.0,<2.0",
"ollama>=0.3,<1.0",
]
[tool.poetry]
packages = [
{ include = "decision_engine", from = "src" },
{ include = "memory_engine", from = "src" },
{ include = "orbit", from = "src" },
{ include = "orbit_api", from = "src" },
]
[tool.pytest.ini_options]
minversion = "7.4"
addopts = "-q"
pythonpath = ["src"]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_configs = true
warn_return_any = true
show_error_codes = true
mypy_path = "src"
ignore_missing_imports = true
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "UP", "B", "SIM"]
ignore = ["E501", "UP042"]
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"