24 lines
471 B
TOML
24 lines
471 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "smssend"
|
|
version = "0.1.0"
|
|
description = "a module to build and run sms send"
|
|
authors = [
|
|
{ name="Your Name", email="you@example.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"bce-python-sdk==0.9.35",
|
|
"ahserver",
|
|
"appPublic",
|
|
"sqlor"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
# 明确告诉它只包含 skillagent 目录
|
|
packages = ["smssend"]
|