-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (29 loc) · 1012 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
from setuptools import find_packages, setup
setup(
name="videomae",
packages=find_packages(exclude=["notebooks", "assets"]),
version="1.0.0",
license="MIT",
description="VideoMAE, A Video Masked Autoencoders in Keras",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Mohammed Innat",
author_email="[email protected]",
url="https://github.com/innat/VideoMAE",
keywords=["deep learning", "image retrieval", "image recognition"],
install_requires=[
"opencv-python>=4.1.2",
"tensorflow>=2.12",
],
setup_requires=[
"pytest-runner",
],
tests_require=["pytest"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
],
)