Commit 6a9d7654 authored by Federico Vaga's avatar Federico Vaga

py: add first python wrapper implementation

Signed-off-by: Federico Vaga's avatarFederico Vaga <federico.vaga@cern.ch>
parent 16a85cbb
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileCopyrightText: 2020 CERN
*.pyc
MANIFEST
# SPDX-License-Identifier: CC0-1.0
#
# SPDX-FileCopyrightText: 2020 CERN
-include Makefile.specific
all:
clean:
install:
python setup.py install
.PHONY: all clean install
This diff is collapsed.
"""
@package docstring
@author: Federico Vaga <federico.vaga@cern.ch>
SPDX-License-Identifier: LGPL-3.0-or-later
SPDX-FileCopyrightText: 2020 CERN (home.cern)
"""
from .PyFmcFineDelay import FmcFineDelay, FmcFineDelayTime, FmcFineDelayPulse, FmcFineDelayPulsePs
__all__ = (
"FmcFineDelay",
"FmcFineDelayTime",
"FmcFineDelayPulse",
"FmcFineDelayPulsePs",
)
#!/usr/bin/env python
"""
SPDX-License-Identifier: CC0-1.0
SPDX-FileCopyrightText: 2020 CERN
"""
from distutils.core import setup
setup(name='PyFmcTdc',
version='3.0',
description='Python Module to handle FMC Fine Delay devices',
author='Federico Vaga',
author_email='federico.vaga@cern.ch',
maintainer="Federico Vaga",
maintainer_email="federico.vaga@cern.ch",
url='https://www.ohwr.org/project/fmc-delay-1ns-8cha',
packages=['PyFmcFineDelay'],
license='LGPL-3.0-or-later',
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment