[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "kronicler"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
"starlette<0.48.0,>=0.40.0",
]
authors = [
{name = "Jake Roggenbuck", email = "jakeroggenbuck2@gmail.com"},
]
maintainers = [
{name = "Jake Roggenbuck", email = "jakeroggenbuck2@gmail.com"},
]
description = "Automatic performance capture and analysis for production applications in Python using a custom columnar database written in Rust."
readme = "README.md"
license = "MIT"
keywords = ["analytics", "metrics", "database", "columnar"]
[project.urls]
Repository = "https://github.com/JakeRoggenbuck/kronicler"
Homepage = "https://github.com/JakeRoggenbuck/kronicler"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "kronicler.kronicler"