Metadata-Version: 1.0
Name: spectrometers
Version: 0.0.3
Summary: API for spectrophotometers (pre-alpha)
Home-page: https://github.com/kanzure/python-spectrometers
Author: Bryan Bishop
Author-email: kanzure@gmail.com
License: BSD
Description: spectrometers
        ~~~~~~~~~~~~~~~
        
        Spectrometers is a simple python API for working with
        spectrometers/spectrophotometers. This was originally created as a gist to help
        with development of `openSpectrometer`_. This doesn't do anything interesting
        yet.
        
        .. _`openSpectrometer`: http://openspectrometer.com/
        
        Example usage
        ----------
        
        here you go
        
        .. code-block:: python
        
            from spectrometers.devices import Nanodrop
        
            nanodrop = Nanodrop()
        
            wavelengths = nanodrop.capture()
        
            >>> wavelengths
            [0.500, 0.520]
        
        Install
        ----------
        
        .. code-block:: bash
        
            sudo pip install spectrometers
        
        or maybe you hate package managers,
        
        .. code-block:: bash
        
            sudo python setup.py install
        
        Testing
        ----------
        
        .. code-block:: bash
        
            make test
        
        Changelog
        ----------
        
        * 0.0.3: get unit tests passing
        
        * 0.0.2: really minor README tweaks
        
        * 0.0.1: basic python module
        
        License
        ----------
        
        BSD
        
Platform: any
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
