Metadata-Version: 2.4
Name: seestarpy
Version: 0.1.0
Summary: Python interface for the SeeStar telescope control system
Project-URL: Homepage, https://github.com/astronomyk/seestarpy
Project-URL: Bug Tracker, https://github.com/astronomyk/seestarpy/issues
Author-email: Kieran Leschinski <kdleschinski@gmail.com>
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Astronomy
Requires-Python: >=3.11
Requires-Dist: pysmb>=1.2.9
Requires-Dist: tzlocal
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx; extra == 'docs'
Requires-Dist: sphinx-autodoc-typehints; extra == 'docs'
Requires-Dist: sphinx-rtd-theme; extra == 'docs'
Description-Content-Type: text/markdown

![SeeStar-Py](docs/_static/seestar_py_logo_banner.png)
A light-weight python module to drive the Seestar smart telescopes

This package is on ReadTheDocs. See [seestarpy.readthedocs.io](https://seestarpy.readthedocs.io/en/latest/)


Quickstart
----------
Install `seestarpy` using pip:

    $ pip install seestarpy

Usage example:

    from seestarpy import connection as conn
    from seestarpy import raw

    conn.DEFAULT_IP = "192.168.1.243"
    raw.test_connection()



