-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 767 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Most packages are available from conda and we can get the tricky
# opencv package via `conda install -c conda-forge opencv` built with qt
conda_packs = []
# But if not using conda, we can go with the pip available package:
pip_packs = {'pip': ['opencv-contrib-python', 'numpy', 'networkx', 'pyzmq', 'pyyaml']}
setup(name='beholderpi',
description='BeholderPi',
author='Ronny Eichler',
author_email='ronny.eichler@gmail.com',
version='0.1.5',
packages=['beholder', 'piEye'],
install_requires=conda_packs,
extras_require=pip_packs,
# entry_points="""[console_scripts]
# beholder=beholder.main:main"""
)