-
Notifications
You must be signed in to change notification settings - Fork 161
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (90 loc) · 2.02 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (90 loc) · 2.02 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
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agentforge"
version = "0.6.6"
description = "AI-driven task automation system"
readme = "README.md"
requires-python = ">=3.12,<3.15"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
authors = [
{ name = "John Smith" },
{ name = "Ansel Anselmi", email = "contact@agentforge.net" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"chromadb>=1.1.0",
"numpy>=2.0.0",
"sentence-transformers",
"groq",
"pymupdf",
"spacy",
"openai",
"oauth-cli-kit>=0.1.3,<1.0.0",
"anthropic",
"google-api-python-client",
"beautifulsoup4",
"browse",
"scipy",
"discord.py",
"semantic-text-splitter",
"google-generativeai",
"PyYAML",
"ruamel.yaml",
"requests",
"xmltodict",
]
[project.urls]
Homepage = "https://github.com/DataBassGit/AgentForge"
[project.optional-dependencies]
other = [
"opencv-python",
"Pillow",
"pytesseract",
]
[tool.setuptools]
include-package-data = true
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["agentforge*"]
[tool.setuptools.package-data]
agentforge = ["setup_files/**/*.yaml"]
[tool.setuptools.exclude-package-data]
agentforge = ["**/__pycache__/*", "**/*.pyc", "**/*.pyo"]
[tool.ruff]
target-version = "py312"
line-length = 120
indent-width = 4
[tool.ruff.lint]
extend-select = ["E501", "PLR0913", "UP045"]
[tool.ruff.lint.pylint]
max-args = 6
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.basedpyright]
include = ["src", "tests"]
exclude = [
"**/__pycache__",
".agentforge",
".venv",
".pytest_cache",
".ruff_cache",
"build",
"dist",
"docs",
"logs",
"src/agentforge.egg-info",
"venv",
]
pythonVersion = "3.12"
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"