mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-06-03 16:08:27 +02:00
initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
# Utility function to read the README file.
|
||||
# Used for the long_description. It's nice, because now 1) we have a top level
|
||||
# README file and 2) it's easier to type in the README file than to put a raw
|
||||
# string in below ...
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
|
||||
setup(
|
||||
name="cadump",
|
||||
version="0.0.1",
|
||||
author="Paul Scherrer Institute",
|
||||
author_email="daq@psi.ch",
|
||||
description=("Interface to dump data from archiver/databuffer"),
|
||||
license="GPLv3",
|
||||
keywords="",
|
||||
url="",
|
||||
packages=find_packages(),
|
||||
long_description=read('Readme.md'),
|
||||
|
||||
)
|
||||
Reference in New Issue
Block a user