-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 996 Bytes
/
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
import setuptools
with open("requirements.txt", "r") as fs:
reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cortex-serving-client",
version="0.42.0",
author="Vaclav Kosar, Antonin Hoskovec, Radek Bartyzal",
description="Cortex.dev ML Serving Client for Python with garbage API collection.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/glami/cortex-serving-client",
packages=setuptools.find_packages(exclude=("test*",)), install_requires=reqs,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
],
python_requires='>=3.6',
)