-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
25 lines (24 loc) · 793 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
from setuptools import setup, find_packages
setup(name='recurring content detector',
version='0.1',
description='Can be used to programmatically detect credits, recaps and previews in tv shows',
url='https://github.com/nielstenboom/recurring-content-detector',
author='Niels ten Boom',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
include_package_data = True,
install_requires=[
'Pillow==9.*',
'ffmpeg_python==0.*',
'matplotlib==3.*',
'opencv_python==4.*',
'pandas==1.*',
'scipy==1.*',
'tqdm==4.*',
'natsort==6.*',
'numpy==1.*',
'pytest==6.*',
'faiss-cpu==1.7.*'
],
zip_safe=False)