17 lines
399 B
TOML
17 lines
399 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dbbackup"
|
|
version = "1.0.0"
|
|
description = "数据库备份与日志同步管理模块 — 全量/增量备份、binlog 复制配置、备份记录与清理"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"sqlor",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["dbbackup*"]
|