-
Notifications
You must be signed in to change notification settings - Fork 191
/
Copy pathsetup.py
29 lines (27 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
# Update the code and upload the package to pypi
# 1. python ./setup.py bdist_wheel --universal
# 2. twine upload dist/simple_tensorflow_serving-x.x.x-py2.py3-none-any.whl
from setuptools import setup, find_packages
setup(
name="simple_tensorflow_serving",
version="0.8.2",
author="tobe",
author_email="[email protected]",
url="https://github.com/tobegit3hub/simple_tensorflow_serving",
description=
"The simpler and easy-to-use serving service for TensorFlow models",
packages=find_packages(),
install_requires=[
'configparser', 'pandas', 'protobuf', 'flask', 'jinja2', 'flask-cors',
'requests', 'pillow', 'uwsgi'
],
include_package_data=True,
zip_safe=False,
entry_points={
"console_scripts": [
# TODO: Do not use wsgi by default
#"simple_tensorflow_serving=simple_tensorflow_serving.command:main",
"simple_tensorflow_serving=simple_tensorflow_serving.server:main",
"stfs=simple_tensorflow_serving.server:main"
],
})