-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 1.03 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
35
# -*- encoding: utf-8 -*-
# ! python3
import io
from setuptools import setup, find_packages
setup(
name='tf_serving_client',
version='0.1.9',
description="""Customised Tensorflow Serving API produced by coffeedjimmy""",
# long_description=io.open("README.md", 'r', encoding="utf-8").read(),
url='https://github.com/coffeedjimmy/tf-serving-client.git',
license='Apache 2.0',
keywords="TensorFlow Serving API libraries",
author='Jimmy Woo',
author_email='coffeedjimmy@gmail.com',
packages=find_packages('.'),
install_requires=[
'grpcio>=1.7.0',
'numpy>=1.12.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'
]
)