forked from weaviate/weaviate-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
53 lines (49 loc) · 1.4 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
47
48
49
50
51
52
53
[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.connect
weaviate.collections
weaviate.schema
weaviate.schema.properties
weaviate.batch
weaviate.backup
weaviate.classification
weaviate.contextionary
weaviate.data
weaviate.data.references
weaviate.data.replication
weaviate.gql
weaviate.cluster
weaviate.proto
weaviate.proto.v1
platforms = any
include_package_data = True
install_requires =
requests>=2.30.0,<3.0.0
httpx>=0.25.0,<=0.27.0
validators==0.34.0
authlib>=1.2.1,<1.3.2
pydantic>=2.5.0,<3.0.0
grpcio>=1.57.0,<2.0.0
grpcio-tools>=1.57.0,<2.0.0
grpcio-health-checking>=1.57.0,<2.0.0
python_requires = >=3.8
[options.package_data]
# If any package or subpackage contains *.txt, *.rst or *.md files, include them:
*: ["*.txt", "*.rst", "*.md", LICENSE],