forked from openvinotoolkit/openvino_contrib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
23 lines (20 loc) · 882 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
# Copyright (C) 2018-2022 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
from setuptools import find_packages, setup
EXTRAS_REQUIRE = {
"tests": ["onnx", "onnxruntime", "accelerate", "diffusers", "openvino", "optimum", "optimum-intel", "open-clip-torch","timm", "pytest"],
}
setup(
name="tomeov",
version="0.1.0",
author="Alexander Kozlov",
url="https://github.com/openvinotoolkit/openvino_contrib/tree/master/modules/token_merging",
description="Token Merging for OpenVINO",
install_requires=["torch~=1.13.1", "torchvision~=0.14.1"],
dependency_links=["https://download.pytorch.org/whl/cpu"],
extras_require=EXTRAS_REQUIRE,
packages=find_packages(exclude=("examples", "build")),
license = 'Apache 2.0',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
)