forked from openvinotoolkit/training_extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (25 loc) · 776 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
26
27
28
29
30
"""
setup file for OTE SDK
"""
# Copyright (C) 2021-2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
#
from setuptools import find_packages, setup
install_requires = []
with open("requirements.txt", "r", encoding="UTF-8") as f:
for line in f:
line = line.strip()
if line and not line.startswith("#"):
install_requires.append(line)
setup(
name="OTE SDK",
version="1.0",
packages=find_packages(include=["ote_sdk", "ote_sdk.*"]),
package_data={"ote_sdk": ["py.typed", "usecases/exportable_code/demo/*"]},
url="",
license="Copyright (c) 2021-2022 Intel Corporation. "
"SPDX-License-Identifier: Apache-2.0",
install_requires=install_requires,
author="Intel",
description="OTE SDK Package",
)