๐Ÿ“ฆ Stream29 / AiWorkflowActions

๐Ÿ“„ pyproject.toml ยท 22 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22[project]
name = "AiWorkflowActions"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
    "anthropic>=0.40.0",
    "python-dotenv==1.0.1",
    "pydantic~=2.11.4",
    "pyyaml~=6.0.1",
    "ty>=0.0.1a20",
]

[project.scripts]
cli = "next_node_prediction.cli:main"

[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
where = ["src"]