forked from gmichaeljaison/specularity-removal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 815 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name='specularity_removal',
packages=['specularity_removal'],
version='0.1.1',
description='Implements specular removal in images captured from various view points',
long_description=open('README.md').read(),
author='Michael Jaison Gnanasekar, Shreyas Joshi',
author_email='[email protected], [email protected]',
url='https://github.com/gmichaeljaison/specularity-removal',
download_url='https://github.com/gmichaeljaison/specularity-removal/tarball/0.1',
keywords=['computer vision', 'image processing', 'specularity-removal',
'highlights', 'homography'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities"
],
requires=['numpy', 'cv2'],
license='LICENSE'
)