-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 694 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_namespace_packages
setup(name='inference_server_client',
packages=find_namespace_packages(include=["inference_server_client", "inference_server_client.*"]),
version='0.1',
description='Inference server client for inference_client',
url='',
author='Mathis Ersted Rasmussen',
author_email='mathis.rasmussen@rm.dk',
license='Apache License Version 2.0, January 2004',
install_requires=[
"requests", "pydantic", "python-dotenv"
],
entry_points={
'console_scripts': [
'infer_cli = inference_server_client.main:main',
],
},
keywords=['']
)