-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (23 loc) · 871 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
"""
mote-serial-log: Mote serial logger with output coloring.
Log printf and HDLC messages from serial port to terminal and logfile.
"""
from setuptools import setup, find_packages
from os.path import join as pjoin
import mote_serial_logger
doclines = __doc__.split("\n")
setup(name='mote_serial_logger',
version=mote_serial_logger.__version__,
description='Mote serial logger with output coloring.',
long_description='\n'.join(doclines[2:]),
url='http://github.com/thinnect/serial-logger',
author='Raido Pahtma',
author_email='[email protected]',
license='MIT',
platforms=['any'],
packages=find_packages(),
install_requires=["pyserial"],
test_suite='nose.collector',
tests_require=['nose'],
scripts=[pjoin('bin', 'serial-logger'), pjoin('bin', 'tail-serial-log')],
zip_safe=False)