-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
39 lines (36 loc) · 1.51 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
"""camera_fusion package installation parameters."""
from setuptools import setup
from setuptools import find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='camera-fusion',
version='0.0.8',
author='Pierre Nagorny',
author_email='[email protected]',
description='Multiple cameras calibration and fusion with OpenCV Python.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/a1rb4Ck/camera-fusion',
license='MIT',
install_requires=['numpy>=1.15.3',
'opencv-contrib-python >= 3.4.3.18',
'sortednp>=0.2.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Capture'],
keywords='opencv fusion image video',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
scripts=['bin/camera_calibration', 'bin/cameras_fusion'],
zip_safe=True)