29 lines
681 B
TOML

[project]
name = "mariadb_binlog_indexer"
version = "0.0.8"
description = "MariaDB Binlog Indexer for Faster Querying"
readme = "README.md"
requires-python = ">=3.7"
license = { text = "MIT" }
authors = [
{ name = "Frappe Cloud", email = "cloud@framework.jingrow.com" }
]
dependencies = [
"duckdb==1.2.2"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
]
[tool.setuptools]
packages = ["mariadb_binlog_indexer"]
[tool.setuptools.package-data]
"mariadb_binlog_indexer" = ["lib/indexer*"]
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"