[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "briefcase-ai"
version = "2.5.1"
description = "Python SDK for AI observability, replay, and decision tracking - Rust-powered performance"
authors = [{name = "Briefcase AI Team"}]
license = {text = "GPL-3.0"}
requires-python = ">=3.10"
readme = "README.md"
dependencies = [
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"requests>=2.31.0",
]
keywords = ["ai", "ml", "observability", "replay", "telemetry", "decision-tracking"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.maturin]
module-name = "briefcase_ai._core"
python-source = "python"
python-packages = ["briefcase_ai", "briefcase"]
strip = true
include = [
{ path = "README.md", format = "wheel" },
{ path = "Cargo.toml", format = "wheel" }
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--verbose --tb=short --strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"integration: marks tests as integration tests",
]
[tool.coverage.run]
source = ["briefcase_ai"]
omit = ["tests/*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]
[project.urls]
Homepage = "https://jalebiventures.com"
Documentation = "https://docs.jalebiventures.com"
[project.optional-dependencies]
lakefs = ["lakefs>=0.14.0"]