Metadata-Version: 2.1
Name: hcam_drivers
Version: 1.3.0
Summary: Observation planning and finding charts for HiPerCAM
Home-page: https://github.com/HiPERCAM/hcam-drivers
Download-URL: https://github.com/HiPERCAM/hcam-drivers/archive/v1.3.0.tar.gz
Author: Stuart Littlefair
Author-email: s.littlefair@shef.ac.uk
License: MIT license
Keywords: hcam-drivers
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE
License-File: AUTHORS.rst

HiperCAM Python Driver
===================================

``hcam_drivers`` provides Python tools for interfacing with the HiperCAM high-speed
camera. ``hcam_drivers`` is written in Python and is based on TKinter. It should be
compatible with Python2 and Python3.

Installation
------------

The software is written as much as possible to make use of core Python
components. The third-party requirements are:

- My own `hcam_widgets <https://github.com/HiPERCAM/hcam_widgets/>`_ package;

- `astropy <http://astropy.org/>`_, a package for astronomical calculations;

- `twisted <https://twistedmatrix.com/trac/>`_, a package for asynchronous programming;

- `autobahn <https://autobahn.readthedocs.io/en/latest/>`_, a package to use the Web Application Messaging Protocol (WAMP);  

- `tornado <http://www.tornadoweb.org/en/stable/>`_, used for file server which allows remote access to observing data;

- `pyaml <https://pypi.python.org/pypi/pyaml/>`_ and `configobj <http://configobj.readthedocs.io/en/latest/configobj.html/>`_ for loading config files and

- `pymodbus <https://github.com/riptideio/pymodbus>`_ (Python 2) or `pymodbus3 <https://pypi.python.org/pypi/pymodbus3/1.0.0>`_ (Python 3) for talking to the flow-rate monitor.


Usually, installing with pip will handle these dependencies for you, so installation is a simple matter of typing::

 pip install hcam_drivers

or if you don't have root access::

 pip install --prefix=my_own_installation_directory hcam_drivers

For more information, see:

* `The documentation <http://hcam-drivers.readthedocs.io/en/latest/>`_
* `This packages' Github code repository <https://github.com/HiPERCAM/hcam_drivers>`_



=======
History
=======

0.1.0 (2017-02-11)
------------------

* First release on PyPI.
