-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.6 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
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "open-responses-server"
dynamic = ["version"]
description = "CLI to manage the OpenAI Responses Server that bridges chat completions to responses API calls"
authors = [
{ name = "Ori Nachum", email = "ori.nachum@gmail.com" }
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.0.0",
"fastapi>=0.68.0",
"uvicorn>=0.15.0",
"httpx>=0.24.0",
"python-dotenv>=0.19.0",
"pydantic>=1.8.0",
"requests>=2.31.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Environment :: Web Environment",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-asyncio>=0.21.0",
"black>=21.0",
"flake8>=3.9",
"twine>=6.1.0",
"pylint>=2.17.0",
"bandit>=1.7.5",
"pre-commit>=3.3.0",
"coverage>=7.2.0",
"flake8-bandit>=4.1.1",
"flake8-bugbear>=23.7.10",
"uvicorn>=0.32.1",
]
[project.scripts]
otc = "open_responses_server.cli:main"
[tool.setuptools.dynamic]
version = {attr = "open_responses_server.version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["open_responses_server"]
omit = []
[tool.coverage.report]
show_missing = true
fail_under = 80
[project.urls]
Homepage = "https://github.com/teabranch/open-responses-server"
Documentation = "https://github.com/teabranch/open-responses-server"
Repository = "https://github.com/teabranch/open-responses-server"