File size: 743 Bytes
c4ebaaa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
116e458
c4ebaaa
 
 
 
 
116e458
c4ebaaa
 
 
 
116e458
 
 
c4ebaaa
 
116e458
 
 
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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "data-cleaning-openenv"
version = "1.0.0"
description = "OpenEnv-compatible data cleaning environment for RL and LLM agents."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
  { name = "thorodin103" }
]
dependencies = [
  "openenv-core>=0.2.0",
  "fastapi==0.104.1",
  "uvicorn==0.24.0",
  "pydantic==2.5.0",
  "pandas==2.1.3",
  "numpy==1.26.2",
  "openai>=2.7.2",
  "PyYAML==6.0.1",
  "python-dotenv==1.0.0"
]

[project.scripts]
server = "server.app:main"

[tool.setuptools]
py-modules = ["main", "environment", "models", "inference"]

[tool.setuptools.packages.find]
include = ["server*"]