forked from nielstenboom/recurring-content-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 818 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='nielstenboom@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data = True,
install_requires=[
'Keras==2.2.4',
'Pillow==6.1.0',
'ffmpeg_python==0.2.0',
'matplotlib==3.1.1',
'opencv_python==4.1.1.26',
'pandas==0.25.0',
'scipy==1.3.1',
'tqdm==4.40.2',
'natsort==6.2.0',
'tensorflow==1.14',
'numpy==1.16.2'
],
zip_safe=False)