-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
55 lines (49 loc) · 1.47 KB
/
pyproject.toml
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
[tool.poetry]
name = "openai-responses"
version = "0.11.1"
description = "🧪🤖 Pytest plugin for automatically mocking OpenAI requests"
authors = ["Michael Harris <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mharrisb1/openai-responses-python"
homepage = "https://mharrisb1.github.io/openai-responses-python/"
documentation = "https://mharrisb1.github.io/openai-responses-python/"
packages = [{ include = "openai_responses", from = "src" }]
keywords = ["openai", "pytest", "testing"]
classifiers = [
"Topic :: Software Development :: Testing :: Mocking",
"Topic :: Software Development :: Testing :: Unit",
]
[tool.poetry.plugins.pytest11]
openai_responses = "openai_responses.plugin"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
openai = ">=1.50,<1.52"
requests-toolbelt = "^1"
respx = "^0.20"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
mypy = "^1.9.0"
pytest = "^8.1.1"
pytest-asyncio = "^0.23.6"
mkdocs-material = "^9.5.18"
tox = "^4.14.2"
langchain-openai = "^0.1.20"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
ignore_missing_imports = true
[tool.pyright]
typeCheckingMode = "strict"
pythonVersion = "3.9"
exclude = [".venv"]
venvPath = "."
venv = ".venv"
strictListInference = true
strictDictionaryInference = true
strictSetInference = true
reportMissingTypeStubs = false
reportUnusedImport = "error"
reportPrivateUsage = "none"
reportWildcardImportFromLibrary = "none"