File size: 1,040 Bytes
f89b1ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[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"