-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.02 KB
/
setup.py
File metadata and controls
33 lines (29 loc) · 1.02 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
import io
import os
import re
from setuptools import find_packages
from setuptools import setup
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open("requirements.txt", "r") as file:
requirements = [x.strip() for x in file.readlines()]
setup(
name="tfserving-manager",
version="0.1.0",
url="www.github.com/ismailuddin/tfserving-manager",
license="MIT",
author="Ismail Uddin",
description="Simple interface for interacting with TensorFlow Serving",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=("tests",)),
install_requires=requirements,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)