[build-system] requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" [project] name = "openenv-dataops_env" version = "1.0.0" description = "Enterprise data pipeline remediation environment for training AI agents (OpenEnv-compliant)." readme = "README.md" requires-python = ">=3.12" dependencies = [ "openenv-core[core]>=0.2.2", "fastapi>=0.115.0", "starlette>=0.46.0,<0.52.0", "uvicorn[standard]>=0.34.0", "pydantic>=2.10.0", "pyyaml>=6.0.2", "openai>=1.60.0", "requests>=2.32.0", "wsproto>=1.3.2", "python-dotenv>=1.0.0", "huggingface-hub>=1.8.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-cov>=4.0.0", ] [project.scripts] server = "dataops_env.server.app:main" [tool.setuptools] include-package-data = true packages = ["dataops_env", "dataops_env.server"] package-dir = { "dataops_env" = ".", "dataops_env.server" = "server" } [tool.pytest.ini_options] pythonpath = ["."] testpaths = ["tests"] addopts = "--import-mode=importlib"