-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (32 loc) · 1.06 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
# -*- encoding: utf-8 -*-
# ! python3
import io
from setuptools import setup
setup(
name='tensorflow-serving-api-python3',
version='1.8.0',
description="""*UNOFFICIAL* TensorFlow Serving API libraries for Python3""",
long_description=io.open("README.rst", 'r', encoding="utf-8").read(),
url='https://github.com/illagrenan/tensorflow-serving-api-python3',
license='Apache 2.0',
keywords="TensorFlow Serving API libraries",
author='Vašek Dohnal',
author_email='tensorflow-serving-dev@googlegroups.com',
packages=['tensorflow_serving'],
install_requires=[
'grpcio>=1.7.0',
'tensorflow>=1.8.0'
],
python_requires='~=3.5',
include_package_data=True,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: OS Independent'
]
)