-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (44 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "interfaze"
version = "1.0.4"
description = "Interfaze Python SDK."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "InterfazeAI" }]
keywords = ["interfaze", "openai", "ai", "ocr", "speech-to-text", "web-search", "sdk"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
]
dependencies = ["openai>=2,<3"]
[project.urls]
Homepage = "https://interfaze.ai"
Repository = "https://github.com/InterfazeAI/interfaze-python"
[project.optional-dependencies]
dev = [
"pytest>=8",
"respx>=0.21",
"mypy>=1.11",
"ruff>=0.6",
"pydantic>=2",
"pytest-cov>=5.0.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/interfaze"]
[tool.pytest.ini_options]
addopts = "--cov --cov-report=term-missing --cov-fail-under=90"
testpaths = ["tests"]
[tool.coverage.run]
branch = true
source = ["src/interfaze"]
[tool.ruff]
line-length = 110
[tool.mypy]
python_version = "3.10"
strict = true
files = ["src/interfaze"]