-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (37 loc) · 1.04 KB
/
pyproject.toml
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
[tool.poetry]
name = "dria_workflows"
version = "0.3.4"
description = "Enables creation of workflows for Dria Agents"
authors = ["andthattoo <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "dria_workflows"}]
repository = "https://github.com/firstbatchxyz/dria-workflows"
keywords = ["workflows", "dria", "agents", "llm", "ai"]
[tool.poetry.dependencies]
python = "^3.10"
jsonschema = "^4.23.0"
pydantic = "^2.8.2"
[tool.poetry.scripts]
dev = "dria_workflows.main:main"
temp = "dria_workflows.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--verbose --cov=dria_workflows --cov-report=term-missing"
[tool.coverage.run]
source = ["dria_workflows"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"if __name__ == .__main__.:",
"raise NotImplementedError",
"pass",
"except ImportError:",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"