-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.66 KB
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
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling>=1.17.1,<1.18"]
build-backend = "hatchling.build"
[project]
name = "python-codex"
version = "0.2.6"
description = "A minimal Python extraction of Codex's main agent loop"
readme = "README.md"
requires-python = ">=3.6.2"
dependencies = [
"cryptography>=40.0.2,<41; python_version < '3.7'",
"cryptography>=40.0.2; python_version >= '3.7'",
"dataclasses>=0.8; python_version < '3.7'",
"fastapi>=0.83.0,<0.84; python_version < '3.7'",
"fastapi>=0.83.0; python_version >= '3.7'",
"importlib_metadata>=4.8.3; python_version < '3.8'",
"loguru>=0.7.3",
"prompt-toolkit>=3.0.36",
"requests>=2.27.1",
"tomli>=1.2.3,<2; python_version < '3.11'",
"typing_extensions>=4.1.1; python_version < '3.8'",
"uvicorn>=0.16.0,<0.17; python_version < '3.7'",
"uvicorn>=0.16.0; python_version >= '3.7'",
]
[project.scripts]
pycodex = "pycodex.cli:main"
pycodex-ws = "workspace_server:main"
[dependency-groups]
dev = [
"debugpy>=1.8.20; python_version >= '3.8'",
"httpx>=0.22.0,<0.23; python_version < '3.8'",
"httpx>=0.28; python_version >= '3.8'",
"pytest>=6.2.5,<7; python_version < '3.8'",
"pytest>=8.0; python_version >= '3.8'",
"pytest-asyncio>=0.16,<0.17; python_version < '3.8'",
"pytest-asyncio>=0.23; python_version >= '3.8'",
]
[tool.uv]
package = true
default-groups = []
[tool.hatch.build.targets.wheel]
packages = ["pycodex", "responses_server", "workspace_server"]
artifacts = [
"workspace_server/workspace.html",
"workspace_server/workspaces.html",
]
[tool.hatch.build.targets.sdist]
exclude = [".venv*"]
[tool.pytest.ini_options]
pythonpath = ["."]
asyncio_mode = "auto"