22 lines
522 B
TOML
22 lines
522 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "tool-databridge"
|
|
version = "0.1.0"
|
|
description = "A data pipeline tool"
|
|
authors = [{ name = "Your Name", email = "you@example.com" }]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pandas==1.5.3",
|
|
"numpy==1.24.4",
|
|
# 你可以继续添加其他依赖
|
|
]
|
|
|
|
[project.scripts]
|
|
databridge = "src.main:main" # 可选:命令行入口
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"] |