sravaniamere commited on
Commit
2da45df
·
1 Parent(s): 160959b

add pyproject.toml

Browse files
Files changed (1) hide show
  1. pyproject.toml +20 -0
pyproject.toml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [project]
2
+ name = "sql-correction-env"
3
+ version = "1.0.0"
4
+ description = "OpenEnv SQL Query Correction RL Environment"
5
+ requires-python = ">=3.11"
6
+ dependencies = [
7
+ "fastapi",
8
+ "uvicorn",
9
+ "pydantic",
10
+ "httpx",
11
+ "openai",
12
+ "openenv-core",
13
+ ]
14
+
15
+ [build-system]
16
+ requires = ["hatchling"]
17
+ build-backend = "hatchling.build"
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["sql_env"]