-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 869 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from commander_teensy.__version__ import VERSION
setup(name='CommanderTeensy',
description='Experimental setup controller and monitor',
author='Ronny Eichler',
author_email='[email protected]',
version=VERSION,
install_requires=['cobs',
'pyserial',
'numpy',
'pyzmq',
'pyglet',
'sounddevice',
'windows-curses ; platform_system == "Windows"'],
packages=['commander_teensy'],
entry_points="""[console_scripts]
teensy=commander_teensy.TeensyCommander:cli_entry
game=commander_teensy.display.game:main
camera=commander_teensy.camera:main"""
)