Files
8.-samopisnyy-poiskovyy-age…/pyproject.toml
T
kuzakhmetovartur 1039c7065c
CI / build (3.1) (push) Has been cancelled
CI / build (3.11) (push) Has been cancelled
CI / build (3.8) (push) Has been cancelled
CI / build (3.9) (push) Has been cancelled
feat: solution for '8. Самописный поисковый агент на основе deep agents from scratch'
2026-06-30 16:22:52 +03:00

29 lines
576 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deepagent"
version = "0.1.0"
description = "A simple deep learning based search agent."
readme = "README.md"
authors = [
{name = "Your Name", email = "you@example.com"},
]
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"torch>=2.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
deepagent = ["py.typed"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
testpaths = ["tests"]