-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (80 loc) · 2.16 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
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
90
91
92
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
name = "freeact-skills"
version = "0.0.0"
description = "Library of predefined freeact agent skills"
homepage = "https://github.com/gradion-ai/freeact-skills"
readme = "README.md"
license = "Apache-2.0"
authors = [
"Martin Krasser <martin@gradion.ai>",
"Christoph Stumpf <chris@gradion.ai>",
]
packages = [
{ include = "freeact_skills" },
]
[tool.poetry.dependencies]
beautifulsoup4 = { version = "^4.12", optional = true }
google-genai = { version = "^0.2.2", optional = true }
httpx = { version = "^0.27.2", optional = true }
openai = { version = "^1.56.0", optional = true }
pydantic = { version = "^2.9", optional = true }
python = "^3.11,<3.14"
python-dateutil = { version = "^2.9", optional = true }
pyyaml = { version = "^6.0", optional = true }
pyzotero = { version = "^1.5", optional = true }
requests = { version = "^2.32", optional = true }
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.5.48"
mkdocstrings-python = "^1.12.2"
[tool.poetry.extras]
reader = ["python-dateutil", "requests"]
resume = ["beautifulsoup4", "pydantic", "pyyaml", "requests"]
search-google = ["google-genai"]
search-perplexity = ["openai", "httpx"]
zotero = ["python-dateutil", "pyzotero"]
all = [
"beautifulsoup4",
"google-genai",
"httpx",
"openai",
"pydantic",
"python-dateutil",
"pyyaml",
"pyzotero",
"requests"
]
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
invoke = "^2.2"
pytest = "^8.3"
pytest-asyncio = "^0.24.0"
python-dotenv = "^1.0"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 120
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401"]
[tool.mypy]
python_version = 3.11
check_untyped_defs = true
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"dateutil.relativedelta",
"dateutil.parser",
"requests",
"yaml"
]
ignore_missing_imports = true
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = "default-unprefixed"
style = "pep440"