-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 995 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (37 loc) · 995 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentflowpy"
version = "1.0.0"
description = "Practial module to build AI agents with context management and step-based execution."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "NonCommercial No-AI License" }
authors = [
{ name = "Ozel Umut Tam", email = "ozel.umut.tam@gmail.com" }
]
dependencies = [
"pydantic>=2.11.0",
"typing-extensions>=4.0.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=1.0.0"
# "isort>=6.0",
# "flake8>=6.0"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["src"]
# [tool.setuptools.include-package-data]
# if you have non-code files to include (e.g. json, templates)
# include = ["some/path", ...] # optional
# [tool.black]
# line-length = 88
# target-version = ["py310", "py311"]
# [tool.isort]
# profile = "black"