surf-spot-finder / pyproject.toml
David de la Iglesia Castro
Implement agent using `openai-agents-python` (#9)
c61646b unverified
raw
history blame
1.26 kB
[build-system]
requires = ["setuptools>=48", "setuptools_scm[toml]>=6.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "surf-spot-finder"
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
"arize-phoenix>=8.12.1",
"fire",
"loguru",
"mcp>=1.3.0",
"pydantic",
"smolagents[litellm,mcp,telemetry]>=1.10.0",
]
[project.optional-dependencies]
openai = [
"openai-agents",
"openinference-instrumentation-openai"
]
demo = [
"gradio",
"spaces"
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
]
tests = [
"pytest>=8,<9",
"pytest-sugar>=0.9.6",
]
# TODO maybe we don't want to keep this, or we want to swap this to Lumigator SDK
tracing = [
"arize-phoenix>=8.12.1",
]
[project.urls]
Documentation = "https://mozilla-ai.github.io/surf-spot-finder/"
Issues = "https://github.com/mozilla-ai/surf-spot-finder/issues"
Source = "https://github.com/mozilla-ai/surf-spot-finder"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
where = ["src"]
namespaces = false
[tool.setuptools_scm]
[project.scripts]
surf-spot-finder = "surf_spot_finder.cli:main"
# TODO maybe this would be lumigator
start-phoenix = "phoenix.server.main:main"