ChargeBackOps / pyproject.toml
mitudrudutta's picture
chore(deps): add matplotlib to dev extras + sync uv.lock
6022558
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-chargeback_ops"
version = "0.1.0"
description = "ChargebackOps: a real-world OpenEnv environment for merchant dispute handling."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
dependencies = [
"anthropic>=0.51.0",
"fastapi>=0.135.0",
"gradio>=6.0.0",
"openai>=2.30.0",
"openenv-core[core]>=0.2.2",
"pydantic>=2.12.0",
"python-dotenv>=1.0.1",
"uvicorn>=0.42.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.0",
"matplotlib>=3.8",
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
server = "chargeback_ops.server.app:main"
chargebackops-baseline = "chargeback_ops.runners.baseline_runner:main"
[tool.setuptools]
include-package-data = true
packages = [
"chargeback_ops",
"chargeback_ops.core",
"chargeback_ops.evaluation",
"chargeback_ops.runners",
"chargeback_ops.scenarios",
"chargeback_ops.server",
"chargeback_ops.connectors",
]
[tool.setuptools.package-dir]
"chargeback_ops" = "."
"chargeback_ops.core" = "core"
"chargeback_ops.evaluation" = "evaluation"
"chargeback_ops.runners" = "runners"
"chargeback_ops.scenarios" = "scenarios"
"chargeback_ops.server" = "server"
"chargeback_ops.connectors" = "connectors"
[tool.pytest.ini_options]
testpaths = ["tests"]