-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 744 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name="videofeatures",
version='0.1',
description='Feature extraction from video or image (ResNet, VGG, SIFT, SURF) and training of a Fisher Vector GMM to compute (improved) '
'Fisher Vectors',
url='https://github.com/jonasrothfuss/python-image-video-features',
author='Jonas Rothfuss, Fabio Ferreira',
author_email='fabioferreira@mailbox.org',
license='MIT',
packages=['videofeatures'],
test_suite='nose.collector',
tests_require=['nose'],
install_requires=[
'numpy',
'scikit_learn'
'py-fisher-vector'
'keras'
'pandas'
'opencv_python'
'gulpio'
],
zip_safe=False)