Files changed (1) hide show
  1. pyproject.toml +7 -14
pyproject.toml CHANGED
@@ -5,22 +5,15 @@ build-backend = "setuptools.backends.legacy:build"
5
  [project]
6
  name = "email-sorting-openenv"
7
  version = "1.0.0"
8
- description = "An OpenEnv environment for sorting emails as spam, important, or promotion"
9
- readme = "README.md"
10
  requires-python = ">=3.10"
11
  dependencies = [
12
- "gymnasium",
13
- "openai",
14
- "fastapi",
15
- "uvicorn",
16
- "openenv-core>=0.2.0",
17
  ]
18
 
19
  [project.scripts]
20
- server = "server.app:main"
21
-
22
- [tool.openenv]
23
- name = "Email Sorting OpenEnv"
24
- version = "1.0.0"
25
- description = "Sort emails as spam, important, or promotion"
26
- entry_point = "env:EmailSortingEnv"
 
5
  [project]
6
  name = "email-sorting-openenv"
7
  version = "1.0.0"
8
+ description = "Real-world email sorting OpenEnv environment"
 
9
  requires-python = ">=3.10"
10
  dependencies = [
11
+ "fastapi>=0.100.0",
12
+ "uvicorn>=0.23.0",
13
+ "openai>=1.0.0",
14
+ "pyyaml>=6.0",
15
+ "httpx>=0.24.0",
16
  ]
17
 
18
  [project.scripts]
19
+ openenv-server = "server.app:main"