mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-25 05:50:45 +02:00
16 lines
356 B
Python
16 lines
356 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="cadump",
|
|
version="0.0.12",
|
|
author="Paul Scherrer Institute",
|
|
author_email="daq@psi.ch",
|
|
description="Interface to dump data from archiver/databuffer",
|
|
packages=["cadump"],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'cadump_server = cadump.cadump:main',
|
|
],
|
|
}
|
|
)
|