-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 805 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 805 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='camera_calibration',
version='0.2',
description='A basic script to run camera calibration on images in a '
'folder.',
long_description=readme(),
url='https://github.com/IRIM-Technology-Transition-Lab/'
'camera-calibration.git',
author='Michael Sobrepera',
author_email='mjsobrep@live.com',
license='License :: OSI Approved :: MIT License',
packages=['camera_calibration'],
install_requires=[
'argparse',
'numpy',
'cv2',
'colorama'
],
zip_safe=True,
entry_points={
'console_scripts': ['calibrate-camera=camera_calibration.cmd:main']
})