-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "aceteam-workflow-engine"
version = "2.0.0rc10"
description = "A powerful workflow orchestration engine for composing complex computational tasks from modular, type-safe nodes"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Anthony Tecsa", email = "[email protected]" },
{ name = "Jason Sun", email = "[email protected]" },
{ name = "Justin Xu", email = "[email protected]" },
]
requires-python = ">=3.12,<4.0"
keywords = [
"workflow",
"orchestration",
"dag",
"pipeline",
"automation",
"async",
"graph",
"execution",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"Framework :: Pydantic :: 2",
]
dependencies = [
"dotenv>=0.9.9",
"networkx>=3.4.2,<4.0.0",
"overrides>=7.7.0",
"pydantic>=2.11.1,<3.0.0",
"pyyaml>=6.0.3",
"tomli-w>=1.2.0",
]
[project.urls]
Homepage = "https://aceteam.ai/workflow-engine"
Documentation = "https://github.com/aceteam-ai/workflow-engine/tree/main/docs"
Repository = "https://github.com/aceteam-ai/workflow-engine"
Issues = "https://github.com/aceteam-ai/workflow-engine/issues"
Changelog = "https://github.com/aceteam-ai/workflow-engine/blob/main/CHANGELOG.md"
[dependency-groups]
dev = [
"networkx>=3.6.1",
"pre-commit>=4.0.0",
"pydot>=3.0.0",
"pyright>=1.1.408",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-mock>=3.14.0",
"python-dotenv>=1.1.0",
"ruff>=0.11.8",
"twine>=6.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/workflow_engine"]
[tool.ruff.lint]
extend-select = ["I", "RUF"]
[tool.ruff.lint.isort]
known-first-party = ["workflow_engine"]