-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathpyproject.toml
More file actions
132 lines (114 loc) · 3.43 KB
/
pyproject.toml
File metadata and controls
132 lines (114 loc) · 3.43 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sgr-agent-core"
dynamic = ["version"]
description = "SGR Agent Core - Schema-Guided Reasoning for building agent"
readme = "README.md"
authors = [
{name = "virrius"},
{name = "VaKovaLskii"},
{name = "abdullin"},
{name = "EvilFreelancer"},
{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
"PyYAML>=6.0",
"python-dateutil>=2.8.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.10.1",
"openai>=1.0.0",
"httpx[socks]>=0.25.0",
# Search and research
"tavily-python>=0.3.0",
# Configuration and utilities
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"fastmcp>=2.12.4",
"jambo>=0.1.3.post2",
# Tools filtering
"rank-bm25>=0.2.2",
]
[project.urls]
Homepage = "https://github.com/vamplabAI/sgr-agent-core"
Repository = "https://github.com/vamplabAI/sgr-agent-core"
Issues = "https://github.com/vamplabAI/sgr-agent-core/issues"
Documentation = "https://vamplabai.github.io/sgr-agent-core/"
"SGR Concept Creator - @abdullin" = "https://t.me/llm_under_hood"
"Coordinator - @VaKovaLskii" = "https://t.me/neuraldeep"
"Core Developer - @virrius" = "https://t.me/virrius_tech"
"Core Developer - @EvilFreelancer" = "https://t.me/evilfreelancer"
"DevOps & Deployment - @mixaill76" = "https://t.me/mixaill76"
"Hybrid FC research - @Shadekss" = "https://t.me/Shadekss"
[project.scripts]
sgr = "sgr_agent_core.server.__main__:main"
sgrsh = "sgr_agent_core.cli.__main__:main"
[project.optional-dependencies]
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",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-dracula-theme",
"mkdocs-material-extensions",
"mkdocs-get-deps",
"mkdocs-static-i18n",
]
[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"
[tool.coverage.run]
source = ["sgr_agent_core"]
[tool.coverage.report]
show_missing = true