-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (47 loc) · 1.3 KB
/
setup.cfg
File metadata and controls
51 lines (47 loc) · 1.3 KB
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
[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 = hello@weaviate.io,
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.classes
weaviate.cluster
weaviate.collections
weaviate.connect
weaviate.debug
weaviate.gql
weaviate.outputs
weaviate.proto
weaviate.proto.v1
weaviate.rbac
weaviate.users
platforms = any
include_package_data = True
install_requires =
httpx>=0.26.0,<0.29.0
validators>=0.34.0,<1.0.0
authlib>=1.6.7,<2.0.0
pydantic>=2.12.0,<3.0.0
grpcio>=1.59.5,<1.80.0
protobuf>=4.21.6,<7.0.0
python_requires = >=3.10
[options.extras_require]
agents =
weaviate-agents >=1.0.0, <2.0.0
[options.package_data]
# If any package or subpackage contains *.txt, *.rst or *.md files, include them:
*: ["*.txt", "*.rst", "*.md", LICENSE],