-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.84 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
[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"]
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", "anyio==4.11.0", "ruff==0.14.5", "mypy==1.18.2"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
filterwarnings = ["ignore:'asyncio.*' is deprecated:DeprecationWarning:pytest_asyncio"]
[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"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "lf"
[tool.mypy]
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