From e6f0cbfd65c40c15126e6ecec2688f5a92c38a82 Mon Sep 17 00:00:00 2001 From: innat Date: Fri, 6 Oct 2023 17:38:35 +0600 Subject: [PATCH] add: requirement.txt, setup.py --- requirements.txt | 2 ++ setup.py | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 requirements.txt create mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..56026c5 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +tensorflow>=2.12 +opencv-python>=4.1.2 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5c71e6e --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +from setuptools import setup, find_packages + +setup( + name = 'videomae', + packages = find_packages(exclude=['notebooks', 'assets']), + version = '1.0.0', + license='MIT', + description = 'VideoMAE, A Video Masked Autoencoders - Keras', + long_description=open('README.md').read(), + long_description_content_type='text/markdown', + author = 'Mohammed Innat', + author_email = 'innat.dev@gmail.com', + url = 'https://github.com/innat/DOLG-TensorFlow', + 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.7', + ], +) \ No newline at end of file