29 lines
576 B
TOML
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"] |