You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
317 B
Python
14 lines
317 B
Python
6 years ago
|
import setuptools
|
||
|
|
||
|
setuptools.setup(
|
||
|
name='daqviewer',
|
||
|
version='0.1.0',
|
||
|
author='Dan Howe',
|
||
|
author_email='d.howe@wrl.unsw.edu.au',
|
||
|
description='Visualise DAQ csv files',
|
||
|
packages=setuptools.find_packages(),
|
||
|
entry_points={'console_scripts': [
|
||
|
'daqviewer = daqviewer:main',
|
||
|
]},
|
||
|
)
|