-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (77 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
89 lines (77 loc) · 2.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "taskforceai"
version = "1.4.0"
description = "TaskForceAI Python SDK"
authors = [{name = "TaskForceAI"}]
readme = "README.md"
requires-python = ">=3.10"
dependencies = ["httpx>=0.24,<0.28", "pydantic>=2.0", "opentelemetry-api>=1.20.0"]
license = "MIT"
license-files = ["LICENSE"]
keywords = ["ai", "multi-agent", "sdk", "taskforceai"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://taskforceai.chat"
Repository = "https://github.com/ClayWarren/taskforceai-sdk-python"
Issues = "https://github.com/ClayWarren/taskforceai-sdk-python/issues"
[project.optional-dependencies]
dev = [
"pytest==9.0.1",
"pytest-asyncio==1.3.0",
"pytest-cov>=5,<6",
"anyio==4.11.0",
"ruff==0.14.5",
"mypy==1.18.2",
"mutmut==3.5.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
filterwarnings = ["error", "ignore:'asyncio.*' is deprecated:DeprecationWarning:pytest_asyncio"]
norecursedirs = ["mutants"]
[tool.mutmut]
source_paths = ["src/"]
pytest_add_cli_args = ["-p", "asyncio"]
pytest_add_cli_args_test_selection = ["tests/"]
[tool.ruff]
target-version = "py39"
line-length = 100
src = ["src", "tests"]
extend-exclude = ["src/taskforceai.egg-info"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "C90"]
ignore = []
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"
[tool.mypy]
exclude = ["mutants/"]
python_version = "3.9"
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_unreachable = true
warn_return_any = true
no_implicit_optional = true
strict_optional = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
show_error_codes = true
ignore_missing_imports = false
namespace_packages = true