-
Notifications
You must be signed in to change notification settings - Fork 82
/
setup.cfg
46 lines (42 loc) · 1.21 KB
/
setup.cfg
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
[metadata]
name = weaviate-client
description = A python native Weaviate client
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://github.com/weaviate/weaviate-python-client
author = Weaviate
author_email = [email protected],
license_files = LICENSE
license = BSD 3-clause
project_urls =
Documentation = https://weaviate-python-client.readthedocs.io
Source = https://github.com/weaviate/weaviate-python-client
Tracker = https://github.com/weaviate/weaviate-python-client/issues
dynamic = ["version"]
[options]
zip_safe = False
packages =
weaviate
weaviate.backup
weaviate.cluster
weaviate.collections
weaviate.connect
weaviate.gql
weaviate.outputs
weaviate.proto
weaviate.proto.v1
weaviate.rbac
platforms = any
include_package_data = True
install_requires =
httpx>=0.26.0,<0.29.0
validators==0.34.0
authlib>=1.2.1,<1.3.2
pydantic>=2.8.0,<3.0.0
grpcio>=1.66.2,<2.0.0
grpcio-tools>=1.66.2,<2.0.0
grpcio-health-checking>=1.66.2,<2.0.0
python_requires = >=3.9
[options.package_data]
# If any package or subpackage contains *.txt, *.rst or *.md files, include them:
*: ["*.txt", "*.rst", "*.md", LICENSE],