forked from PINTO0309/openvino2tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 852 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
from setuptools import setup, Extension
from setuptools import find_packages
from os import listdir
with open("README.md") as f:
long_description = f.read()
scripts = ["scripts/"+i for i in listdir("scripts")]
if __name__ == "__main__":
setup(
name="openvino2tensorflow",
scripts=scripts,
version="1.15.1",
description="This script converts the OpenVINO IR model to Tensorflow's saved_model, tflite, h5 and pb. in (NCHW) format",
long_description=long_description,
long_description_content_type="text/markdown",
author="Katsuya Hyodo",
author_email="[email protected]",
url="https://github.com/PINTO0309/openvino2tensorflow",
license="MIT License",
packages=find_packages(),
platforms=["linux", "unix"],
python_requires=">3.6",
)