-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 930 Bytes
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 930 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "rl-testing-env"
version = "1.0.0"
requires-python = ">=3.11"
description = "OpenEnv environment for training agents on automated software testing"
dependencies = [
"fastapi",
"uvicorn[standard]",
"pydantic",
"openenv-core",
"pytest",
"pytest-cov",
"pytest-asyncio",
"httpx",
"openai",
]
[project.scripts]
rl-testing-env = "server.app:main"
server = "server.app:main"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"httpx",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["server", "models.py", "client.py", "inference.py"]
[tool.hatch.build.targets.sdist]
include = [
"server/",
"models.py",
"client.py",
"inference.py",
"openenv.yaml",
"README.md",
]