forked from thumbor/remotecv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (58 loc) · 1.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/python
# -*- coding: utf-8 -*-
# thumbor imaging service
# https://github.com/globocom/thumbor/wiki
# Licensed under the MIT license:
# http://www.opensource.org/licenses/mit-license
# Copyright (c) 2011 globo.com [email protected]
from setuptools import setup, find_packages
from remotecv import __version__
tests_require = [
"nose",
"preggy",
"coverage",
"numpy",
"yanc",
"nose-focus",
"mock",
"opencv-python",
]
setup(
name='remotecv',
version=__version__,
description="remotecv is an OpenCV worker for facial and feature recognition",
long_description="""
remotecv is an OpenCV worker for facial and feature recognition
""",
keywords='imaging face detection feature opencv',
author='globo.com',
author_email='[email protected]',
url='https://github.com/globocom/remotecv/wiki',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'],
packages=find_packages(exclude=['tests', 'tests.*']),
package_data={
'': ['*.xml'],
},
extras_require={
'tests': tests_require,
},
install_requires=[
"argparse>=1.2.1,<1.3.0",
"pyres>=1.2,<1.3",
"Pillow>=3.0,<4.0",
],
entry_points={
'console_scripts': [
'remotecv = remotecv.worker:main'
],
}
)