-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
43 lines (42 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages, setup
setup(
name="videoswin",
packages=find_packages(exclude=["notebooks", "assets", "data"]),
version="2.0.0",
license="Apache License 2.0",
description="Video Swin Transformerss in Keras 3",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Mohammed Innat",
author_email="[email protected]",
url="https://github.com/innat/VideoSwin",
keywords=["deep learning", "video retrieval", "video recognition"],
install_requires=[
"opencv-python>=4.1.2",
"keras==3.0.5",
"tensorflow-datasets",
],
extras_require={
"tests": [
"flake8",
"isort",
"black[jupyter]",
"pytest",
],
},
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
],
)