17 lines
355 B
TOML
17 lines
355 B
TOML
[build-system]
|
|
requires = ["setuptools>=45", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "filesync"
|
|
version = "1.0.0"
|
|
description = "运行文件同步模块 — rsync 目录同步配置与状态管理"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"sqlor",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["filesync*"]
|