Skip to content

Commit

Permalink
add: requirement.txt, setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
innat committed Oct 6, 2023
1 parent 6e0f7f6 commit e6f0cbf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tensorflow>=2.12
opencv-python>=4.1.2
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
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',
],
)

0 comments on commit e6f0cbf

Please sign in to comment.