Files
exo/shared/pyproject.toml
Gelu Vrabie 2f64e30dd1 Add sqlite connector
Co-authored-by: Gelu Vrabie <gelu@exolabs.net>
2025-07-21 14:10:29 +01:00

41 lines
831 B
TOML

[project]
name = "exo-shared"
version = "0.1.0"
description = "Shared utilities for the Exo project"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiosqlite>=0.20.0",
"networkx>=3.5",
"openai>=1.93.0",
"pathlib>=1.0.1",
"protobuf>=6.31.1",
"pydantic>=2.11.7",
"rich>=14.0.0",
"rustworkx>=0.16.0",
"sqlmodel>=0.0.22",
"sqlalchemy[asyncio]>=2.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
clean = true
[tool.hatch.build.targets.wheel]
packages = []
include = ["*"]
exclude = ["protobufs/schemas", "*.md", "pyproject.toml"]
[tool.hatch.build.targets.sdist]
packages = []
include = ["*"]
exclude = ["protobufs/schemas", "*.md", "pyproject.toml"]
[dependency-groups]
dev = [
"types-protobuf>=6.30.2.20250516",
]