-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
73 lines (64 loc) · 1.81 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
71
72
73
[project]
name = "typesense"
description = "Python client for Typesense, an open source and typo tolerant search engine."
authors = [{ name = "Typesense", email = "contact@typesense.org" }]
requires-python = ">=3.9"
readme = "README.md"
license = { text = "Apache 2.0" }
keywords = [
"search",
"typesense",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"httpx>=0.28.1",
"typing-extensions",
]
dynamic = ["version"]
[project.urls]
Documentation = "https://typesense.org/"
Source = "https://github.com/typesense/typesense-python"
Tracker = "https://github.com/typesense/typesense-python/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"mypy>=1.19.0",
"pytest",
"pytest-asyncio",
"coverage",
"pytest-mock",
"python-dotenv",
"faker",
"ruff>=0.11.11",
"isort>=6.0.1",
"respx>=0.22.0",
"requests",
"unasync>=0.6.0",
]
[tool.uv]
package = false
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple"
[tool.setuptools.dynamic]
version = {attr = "typesense.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.coverage.run]
source = ["."]
omit = ["examples/*.py","./venv/*","tests/*/*.py","*__init__.py","*/*test.py", "./src/typesense/types/*.py"]
[tool.coverage.report]
omit = ["examples/*.py","./venv/*","tests/*.py","*__init__.py","*/*test.py"]