forked from pinecone-io/pinecone-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
105 lines (98 loc) · 3.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.git # exclude a few common directories in the
| \.mypy_cache # root of the project
| \.pytest_cache
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.poetry]
name = "pinecone-client"
version = "3.1.0"
packages = [
{ include="pinecone", from="." },
]
description = "Pinecone client and SDK"
authors = ["Pinecone Systems, Inc. <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://www.pinecone.io"
documentation = "https://pinecone.io/docs"
keywords = ["Pinecone", "vector", "database", "cloud"]
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
typing-extensions = ">=3.7.4"
urllib3 = [
{ version = ">=1.26.0", python = ">=3.8,<3.12" },
{ version = ">=1.26.5", python = "^3.12" }
]
tqdm = ">=4.64.1"
# certifi does not follow semver. Should always be
# on latest but setting a broad range to have maximum
# compatibility with libraries that may pin version.
certifi = ">=2019.11.17"
grpcio = [
{ version = ">=1.44.0", optional = true, python = "^3.8,<3.11" },
{ version = ">=1.59.0", optional = true, python = "^3.11" }
]
grpc-gateway-protoc-gen-openapiv2 = { version = "0.1.0", optional = true }
googleapis-common-protos = { version = ">=1.53.0", optional = true }
lz4 = { version = ">=3.1.3", optional = true }
protobuf = { version = "~=3.20.0", optional = true }
[tool.poetry.group.types]
optional = true
[tool.poetry.group.types.dependencies]
mypy = "^1.6.1"
types-urllib3 = "^1.26.25.14"
grpc-stubs = "^1.53.0.3"
pandas-stubs = [
{version = "^2.1.1.230928", python = ">=3.9"},
{version = "^1.5.3.230321", python = ">=3.8,<3.9"}
]
types-tqdm = "^4.66.0.3"
types-protobuf = "^4.24.0.4"
[tool.poetry.group.dev.dependencies]
numpy = [
{ version = ">=1.22", python = ">=3.9" },
{ version = ">=1.21", python = ">=3.8,<3.9" },
]
pandas = ">=1.3.5"
pdoc = "^14.1.0"
pytest = "8.0.0"
pytest-asyncio = "0.15.1"
pytest-cov = "2.10.1"
pytest-mock = "3.6.1"
pytest-timeout = "2.2.0"
urllib3_mock = "0.3.3"
responses = ">=0.8.1"
[tool.poetry.extras]
grpc = ["grpcio", "grpc-gateway-protoc-gen-openapiv2", "googleapis-common-protos", "lz4", "protobuf"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"