-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
31 lines (29 loc) · 836 Bytes
/
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
#!python3
# -*- coding: utf-8 -*-
"""
NCams Toolbox
Copyright 2019-2020 Charles M Greenspon, Anton Sobinov
https://github.com/CMGreenspon/NCams
"""
from setuptools import setup, find_packages
setup(
name='ncams',
version='0.1.70',
description='Calibration, pose estimation, and triangulation using multiple cameras.',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url='https://github.com/CMGreenspon/NCams',
install_requires=[
'numpy',
'matplotlib',
'scipy',
'moviepy',
'opencv-contrib-python',
'reportlab',
'pyyaml',
'easygui',
'astropy'],
author='Charles M. Greenspon, Anton R Sobinov',
author_email='charles.greenspon@gmail.com',
license='MIT',
packages=find_packages())