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.
24 lines
555 B
Python
24 lines
555 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='daqviewer',
|
|
version='0.2.0',
|
|
author='Dan Howe',
|
|
author_email='d.howe@wrl.unsw.edu.au',
|
|
description='Visualise DAQ csv files',
|
|
package_data={'daqviewer': ['assets/*']},
|
|
packages=setuptools.find_packages(),
|
|
install_requires=[
|
|
'pandas',
|
|
'plotly',
|
|
'dash',
|
|
'dash_core_components',
|
|
'dash_html_components',
|
|
'dash_table',
|
|
'chart_studio',
|
|
],
|
|
entry_points={'console_scripts': [
|
|
'daqviewer = daqviewer:main',
|
|
]},
|
|
)
|