-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
34 lines (31 loc) · 1.04 KB
/
setup.py
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_packages(include=["clarifai_grpc*"])
setuptools.setup(
name="clarifai-grpc",
version="10.9.11",
author="Clarifai",
author_email="[email protected]",
description="Clarifai gRPC API Client",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Clarifai/clarifai-python-grpc",
packages=packages,
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
license="Apache 2.0",
python_requires='>=3.8',
install_requires=[
"grpcio>=1.44.0,<1.65.0",
"protobuf>=3.20.3",
"googleapis-common-protos>=1.53.0",
"requests>=2.25.1",
],
package_data={p: ["*.pyi"]
for p in packages},
include_package_data=True)