-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 767 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 767 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='thingscoop',
version='0.2',
description='Command-line utility for searching and filtering videos based on objects that appear in them using convolutional neural networks',
author='Anastasis Germanidis',
author_email='agermanidis@gmail.com',
url='https://github.com/agermanidis/thingscoop',
packages=['thingscoop'],
scripts=['bin/thingscoop'],
install_requires=[
'pyPEG2>=2.15.1',
'requests>=2.7.0',
'moviepy>=0.2.2.11',
'docopt>=0.6.2',
'progressbar>=2.3',
'numpy>=1.9.2',
'pattern>=2.6',
'termcolor>=1.1.0'
],
license="MIT"
)