File size: 580 Bytes
3da84f9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "data-cleaning-env"
version = "1.0.0"
description = "A reinforcement learning environment for data cleaning tasks."
authors = [
  { name="Soham Sandeep Kamathi", email="2023.soham.kamathi@ves.ac.in" }
]
requires-python = ">=3.10"
dependencies = [
    "fastapi>=0.104.0",
    "uvicorn>=0.24.0",
    "pydantic>=2.0.0",
    "pandas>=2.0.0",
    "numpy>=1.24.0",
    "openai>=1.0.0",
    "httpx>=0.25.0",
    "openenv-core>=0.2.0"
]

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