forked from turbopuffer/turbopuffer-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.7 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
52
53
54
55
56
57
58
59
[tool.poetry]
name = "turbopuffer"
version = "0.1.15"
description = "Python Client for accessing the turbopuffer API"
authors = ["turbopuffer Inc. <info@turbopuffer.com>"]
homepage = "https://turbopuffer.com"
documentation = "https://turbopuffer.com/docs"
repository = "https://github.com/turbopuffer/turbopuffer-python"
license = "MIT"
readme = "README.md"
keywords = ["turbopuffer", "vector", "database", "cloud"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed"
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.31"
iso8601 = "^2.1.0"
orjson = {version = ">=3.9, <=3.10.3", optional = true} # 3.10.4 errors on install
numpy = {version = "^1.26.3", optional = true}
pandas = {version = "^2.1.4", optional = true}
[tool.poetry.extras]
fast = ["orjson"]
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "^7.4.3"
flake8 = "^7.0.0"
pytest-xdist = "^3.6.1"
[tool.poetry.group.compatibility]
optional = true
[tool.poetry.group.compatibility.dependencies]
pandas = "^2.1.4"
numpy = "^1.26.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"