-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 838 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (30 loc) · 838 Bytes
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>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openenv-scheme_env"
version = "0.1.0"
description = "Indian Government Welfare Officer RL Environment"
requires-python = ">=3.10"
dependencies = [
"openenv-core[core]>=0.2.2,<1.0.0",
"fastapi>=0.115.0,<1.0.0",
"uvicorn>=0.24.0,<1.0.0",
"pydantic>=2.0.0,<3.0.0",
"openai>=2.7.2,<3.0.0",
"python-dotenv>=1.0.1,<2.0.0",
"gymnasium>=0.29.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.scripts]
server = "scheme_env.server.app:main"
[tool.setuptools]
include-package-data = true
packages = ["scheme_env", "scheme_env.server"]
package-dir = { "scheme_env" = ".", "scheme_env.server" = "server" }