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.

22 lines
493 B
Python

6 years ago
import setuptools
setuptools.setup(
name='daqviewer',
version='0.1.1',
6 years ago
author='Dan Howe',
author_email='d.howe@wrl.unsw.edu.au',
description='Visualise DAQ csv files',
5 years ago
# packages=['daqviewer'],
packages=setuptools.find_packages(),
install_requires=[
'pandas',
'plotly',
'dash',
'dash_core_components',
'dash_html_components',
],
6 years ago
entry_points={'console_scripts': [
'daqviewer = daqviewer:main',
]},
)