forked from typesense/typesense-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
51 lines (43 loc) · 1.4 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "typesense"
description = "Python client for Typesense, an open source and typo tolerant search engine."
authors = [
{"name" = "Typesense", "email" = "[email protected]"},
]
readme = "README.md"
requires-python = ">=3"
keywords = ["search", "typesense"]
license = {"text" = "Apache 2.0"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = ["aiohttp>=3.10,<4"]
dynamic = ["version"]
[tool.poetry]
name = "typesense"
version = "1.0.0"
description = ""
authors = ["Fake Name [email protected]"]
[tool.poetry.dependencies]
python = "==3.12.*|==3.13.*"
aiohttp = "^3.10"
[project.urls]
Documentation = "https://typesense.org/"
Source = "https://github.com/typesense/typesense-python"
Tracker = "https://github.com/typesense/typesense-python/issues"
[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"]