forked from pinecone-io/pinecone-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
96 lines (90 loc) · 2.83 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
[tool.black]
line-length = 120
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[tool.poetry]
name = "pinecone-client"
version = "2.2.4"
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",
"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,<4.0"
requests = "^2.31.0"
pyyaml = ">=5.4"
loguru = "0.5.3"
typing-extensions = ">=3.7.4"
dnspython = ">=2.0.0"
python-dateutil = ">=2.5.3"
urllib3 = ">=1.21.1"
tqdm = ">=4.64.1"
numpy = ">=1.22.0"
grpcio = ">=1.44.0"
grpc-gateway-protoc-gen-openapiv2 = "0.1.0"
googleapis-common-protos = ">=1.53.0"
lz4 = ">=3.1.3"
protobuf = "~=3.20.0"
[tool.poetry.group.dev.dependencies]
pdoc = "^14.1.0"
pytest = "6.2.4"
pytest-asyncio = "0.15.1"
pytest-cov = "2.10.1"
pytest-mock = "3.6.1"
pytest-timeout = "1.4.2"
urllib3_mock = "0.3.3"
responses = ">=0.8.1"
pandas = ">=1.3.5"
# Poetry's concept of extras is what allows us to separate the gRPC dependencies,
# which will only be installed if you run `poetry install --extras "grpc"`,
# from the base dependencies.
#
# Note that Poetry expects the dependencies to be defined in either tool.poetry.dependencies
# or tool.poetry.group.dev.dependencies, but they're only referenced by name in the grpc entry under
# tool.poetry.extras
[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"