This repository was archived by the owner on Sep 24, 2020. It is now read-only.
forked from PyImageSearch/imutils
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·58 lines (54 loc) · 1.82 KB
/
setup.py
File metadata and controls
executable file
·58 lines (54 loc) · 1.82 KB
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
from __future__ import print_function
from setuptools import setup
# from opencvutils.version import __version__ as VERSION
from build_utils import BuildCommand
from build_utils import PublishCommand
from build_utils import BinaryDistribution
from build_utils import SetGitTag
from build_utils import get_pkg_version
VERSION = get_pkg_version('opencvutils/__init__.py')
PACKAGE_NAME = 'opencvutils'
BuildCommand.pkg = PACKAGE_NAME
PublishCommand.pkg = PACKAGE_NAME
PublishCommand.version = VERSION
SetGitTag.version = VERSION
setup(
name=PACKAGE_NAME,
packages=[PACKAGE_NAME],
version=VERSION,
description='Simple OpenCV 3.x image processing functions',
author='Kevin J. Walchko',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
author_email='kevin.walchko@outlook.com',
url='https://github.com/MomsFriendlyRobotCompany/{}'.format(PACKAGE_NAME),
keywords=['computer vision', 'image processing', 'opencv'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
],
install_requires=[
'numpy',
'pyyaml',
'build_utils',
'fake_rpi'
],
scripts=[
'bin/camera_calibrate.py',
'bin/mjpeg_server.py',
'bin/video_capture.py'
],
license='MIT',
cmdclass={
'make': BuildCommand,
'publish': PublishCommand,
'git': SetGitTag
},
)