-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
41 lines (35 loc) · 1.21 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
[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 = ["requests"]
dynamic = ["version"]
[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"]