24 lines
463 B
TOML
24 lines
463 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "dagflow"
|
|
version = "0.1.0"
|
|
description = "a module to build and run workflow"
|
|
authors = [
|
|
{ name="Your Name", email="you@example.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"pydantic>=1.10",
|
|
"skillkit",
|
|
"asteval",
|
|
"aiohttp"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
# 明确告诉它只包含 skillagent 目录
|
|
packages = ["dagflow"]
|