forked from vamplabAI/sgr-agent-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (99 loc) · 2.85 KB
/
pyproject.toml
File metadata and controls
113 lines (99 loc) · 2.85 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
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sgr-deep-research"
dynamic = ["version"]
description = "SGR Agent Core - Schema-Guided Reasoning for building agent"
readme = "README.md"
authors = [
{name = "virrius"},
{name = "VaKovaLskii"},
{name = "abdullin"},
{name = "Pavel Zloi"},
{name = "Shadekss"},
{name = "mixaill76"}
]
requires-python = ">=3.11"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["ai", "research", "reasoning", "schema-guided", "openai"]
dependencies = [
# Core dependencies
"openai>=1.0.0",
"pydantic>=2.0.0",
"rich>=13.0.0",
# HTTP client with proxy support
"httpx>=0.25.0",
"socksio>=1.0.0",
# Search and research
"tavily-python>=0.3.0",
# Web scraping and content extraction
"trafilatura>=1.6.0",
"youtube-transcript-api>=0.6.0",
# Configuration and utilities
"PyYAML>=6.0",
"python-dateutil>=2.8.0",
"pydantic-settings>=2.10.1",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"lxml<6",
"fastmcp>=2.12.4",
"jambo>=0.1.3.post2",
]
[project.urls]
Homepage = "https://github.com/vakovalskii/sgr-deep-research"
Repository = "https://github.com/vakovalskii/sgr-deep-research"
Issues = "https://github.com/vakovalskii/sgr-deep-research/issues"
[project.scripts]
sgr = "sgr_agent_core.__main__:main"
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
]
tests = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-asyncio>=0.21.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["sgr_agent_core*"]
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "sgr_agent_core.__version__"}
[tool.setuptools.package-dir]
"" = "."
[tool.setuptools.package-data]
"sgr_agent_core" = ["**/*.yaml", "**/*.yml", "**/*.json", "**/*.txt"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
extend-select = ["E501", "I"]
[tool.ruff.format]
docstring-code-format = true
line-ending = "lf"
[tool.pytest.ini_options]
asyncio_mode = "auto"