Skip to content
Snippets Groups Projects
Commit 0e7bd357 authored by Philipp Schmidt's avatar Philipp Schmidt
Browse files

Add initial manager implementation

parent 39f2ee37
No related branches found
No related tags found
3 merge requests!12Snapshot: field test deployed version as of end of run 202201,!3Base correction device, CalCat interaction, DSSC and AGIPD devices,!2Add manager device
from setuptools import find_packages, setup
#!/usr/bin/env python
setup(
name="calng",
version="0.0.0",
author="CAL team",
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={
"karabo.bound_device": [
"DsscCorrection = Correction.dssc_correction:DsscCorrection",
],
},
package_data={},
requires=[],
from os.path import dirname, join, realpath
from setuptools import setup, find_packages
from karabo.packaging.versioning import device_scm_version
ROOT_FOLDER = dirname(realpath(__file__))
scm_version = device_scm_version(
ROOT_FOLDER,
join(ROOT_FOLDER, 'src', 'CalibrationManager', '_version.py')
)
setup(name='calng',
use_scm_version=scm_version,
author='CAL team',
author_email='da-support@xfel.eu',
description='',
long_description='',
url='',
package_dir={'': 'src'},
packages=find_packages('src'),
entry_points={
'karabo.bound_device': [
'DsscCorrection = Correction.dssc_correction:DsscCorrection',
],
'karabo.middlelayer_device': [
'CalibrationManager = CalibrationManager.CalibrationManager:CalibrationManager'
],
},
package_data={},
requires=[],
)
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment