[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "telelog-python"
version = "0.2.0"
description = "High-performance structured logging library with rich visualization capabilities"
authors = [{ name = "Vedant Asati", email = "vedant.asati03@gmail.com" }]
license = { text = "MIT OR Apache-2.0" }
readme = "README.md"
keywords = [
"logging",
"structured",
"profiling",
"visualization",
"performance",
"monitoring",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Logging",
"Topic :: Software Development :: Debuggers",
]
requires-python = ">=3.8"
[project.urls]
Homepage = "https://github.com/vedant-asati03/telelog"
Repository = "https://github.com/vedant-asati03/telelog"
"Bug Reports" = "https://github.com/vedant-asati03/telelog/issues"
Documentation = "https://github.com/vedant-asati03/telelog#readme"
[tool.maturin]
features = ["python"]
module-name = "telelog"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]