Metadata-Version: 2.1
Name: pyindi-client
Version: 1.9.1
Summary: Third party Python API for INDI client
Home-page: https://github.com/indilib/pyindi-client
Author: geehalel
Author-email: geehalel@gmail.com
License: GNU General Public License v3 or later (GPLv3+)
Keywords: libindi client wrapper
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: Unix
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Astronomy
License-File: LICENSE


An INDI Client Python API, auto-generated from the official C++ API using SWIG.

Installation

Use pip (recommended): pip install pyindi-client

Alternatively download a release, extract it and run: python setup.py install

The file setup.cfg contains configuration options (mainly concerning libindi installation path).
The file setup.py searchs for the libindiclient.a library in some predefined directories.
If not found, the script fails. Locate this library (try locate lindiclient.a from the command line)
and add its path to the libindisearchpaths variable in the setup script.

Dependencies

For the above installation to work, you need to have installed from your distribution repositories the following packages: Python setup tools, Python development files, libindi development files and swig.
- On an Ubuntu-like distribution, you may use:
apt-get install python-setuptools python-dev libindi-dev swig
- On a Fedora-like distribution, you may use (dnf or yum):
dnf install python-setuptools python-devel libindi-devel swig


