-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.13 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
[tool.poetry]
name = "tigrisdb"
version = "0.1.0"
description = "Python SDK for Tigris <http://www.tigrisdata.com>"
authors = ["Tigris team <[email protected]>"]
repository = "https://www.github.com/tigrisdata/tigris-client-python"
documentation = "https://www.tigrisdata.com/docs/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: Database"
]
license = "Apache-2.0"
readme = "README.md"
keywords = ["database", "nosql", "vector", "search"]
include = ["api/generated/**/*"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
protobuf = ">=3.19.6"
grpcio-tools = ">=1.46.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.3.0"
coverage = { version = "^7.2.5", extras = ["toml"] }
tomli = "^2.0.1"
[tool.poetry.scripts]
make = "scripts.proto:main"
[tool.coverage.run]
source = ["tigrisdb"]
branch = true
command_line = "-m unittest discover -s tests -p 'test_*.py'"
[tool.coverage.report]
fail_under = 90
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"