sdss-fliswarm

A tool to create and manage Docker instances of flicamera


Keywords
astronomy, software
License
BSD-3-Clause
Install
pip install sdss-fliswarm==0.5.0

Documentation

fliswarm

Versions Documentation Status Tests Status codecov

A tool to create and manage Docker instances of flicamera.

Installation

You can install fliswarm by doing

pip install sdss-fliswarm

To build from source, use

git clone git@github.com:sdss/fliswarm
cd fliswarm
pip install .

Development

fliswarm uses poetry for dependency management and packaging. To work with an editable install it's recommended that you setup poetry and install fliswarm in a virtual environment by doing

poetry install

Pip does not support editable installs with PEP-517 yet. That means that running pip install -e . will fail because poetry doesn't use a setup.py file. As a workaround, you can use the create_setup.py file to generate a temporary setup.py file. To install fliswarm in editable mode without poetry, do

pip install poetry
python create_setup.py
pip install -e .