Metadata-Version: 2.2
Name: celestine
Version: 2025.2.17
Summary: A python framework for desktop applications.
Author-email: Marian Molyneux <celestine@cyanochroite.com>
Maintainer-email: mem_dixy <mem_dixy@pm.me>
Project-URL: Documentation, https://celestine.readthedocs.io/
Project-URL: Source, https://github.com/cyanochroite/celestine
Project-URL: Tracker, https://github.com/cyanochroite/celestine/issues
Project-URL: Discord, https://discord.gg/aNmDWPXd7B
Keywords: python,application,wrapper,framework,localization,cross-platform,offline,desktop,celestine,image-viewer
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
Classifier: Natural Language :: Bulgarian
Classifier: Natural Language :: Croatian
Classifier: Natural Language :: Czech
Classifier: Natural Language :: Danish
Classifier: Natural Language :: Dutch
Classifier: Natural Language :: English
Classifier: Natural Language :: Finnish
Classifier: Natural Language :: French
Classifier: Natural Language :: German
Classifier: Natural Language :: Greek
Classifier: Natural Language :: Hungarian
Classifier: Natural Language :: Irish
Classifier: Natural Language :: Italian
Classifier: Natural Language :: Latvian
Classifier: Natural Language :: Lithuanian
Classifier: Natural Language :: Polish
Classifier: Natural Language :: Portuguese
Classifier: Natural Language :: Romanian
Classifier: Natural Language :: Slovak
Classifier: Natural Language :: Slovenian
Classifier: Natural Language :: Spanish
Classifier: Natural Language :: Swedish
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: User Interfaces
Classifier: Typing :: Typed
Requires-Python: >=3.12
Description-Content-Type: text/x-rst
License-File: LICENCE.txt
Requires-Dist: Pillow>=10.0.0
Requires-Dist: platformdirs>=4.0.0
Provides-Extra: build
Requires-Dist: blender-stubs; extra == "build"
Requires-Dist: build; extra == "build"
Requires-Dist: coverage; extra == "build"
Requires-Dist: flake8; extra == "build"
Requires-Dist: mypy; extra == "build"
Requires-Dist: pip; extra == "build"
Requires-Dist: pycodestyle; extra == "build"
Requires-Dist: pylint; extra == "build"
Requires-Dist: pyright; extra == "build"
Requires-Dist: pytest; extra == "build"
Requires-Dist: ruff; extra == "build"
Requires-Dist: Sphinx; extra == "build"
Requires-Dist: twine; extra == "build"
Requires-Dist: types-requests; extra == "build"
Provides-Extra: clean
Requires-Dist: autoflake; extra == "clean"
Requires-Dist: black; extra == "clean"
Requires-Dist: isort; extra == "clean"
Requires-Dist: pydocstringformatter; extra == "clean"
Requires-Dist: pyupgrade; extra == "clean"
Provides-Extra: demo
Requires-Dist: requests; extra == "demo"
Provides-Extra: gui
Requires-Dist: dearpygui; extra == "gui"
Requires-Dist: pygame; extra == "gui"
Requires-Dist: windows-curses; platform_system == "Windows" and extra == "gui"

Célestine
#########

.. image:: https://readthedocs.org/projects/celestine/badge/?version=latest
   :alt: Documentation Status
   :target: https://celestine.readthedocs.io/en/latest/?badge=latest
.. image:: https://img.shields.io/github/repo-size/cyanochroite/celestine
   :alt: GitHub repo size
   :target: https://github.com/cyanochroite/celestine
.. image:: https://img.shields.io/pypi/v/celestine
   :alt: PyPI - Version
   :target: https://pypi.org/project/celestine/
.. image:: https://img.shields.io/pypi/l/celestine
   :alt: PyPI - License
   :target: https://eupl.eu/
.. image:: https://img.shields.io/badge/calver-YYYY.MM.DD-22bfda.svg
   :alt: Calendar Versioning
   :target: https://calver.org/
.. image:: https://app.deepsource.com/gh/cyanochroite/celestine.svg/?label=active+issues&show_trend=false&token=1MUQkPi-6MM_PMqnaWrAJ6c7
   :alt: Deep Source
   :target: https://app.deepsource.com/gh/cyanochroite/celestine/
.. image:: https://sonarcloud.io/api/project_badges/measure?project=cyanochroite_celestine&metric=alert_status
   :alt: Quality Gate Status
   :target: https://sonarcloud.io/summary/new_code?id=cyanochroite_celestine


A python framework for desktop applications.
Featuring support for multiple graphical user interfaces.
Localized for members of the European Union.


About
*****

The only requirement is Python.
However, you can install additional packages for extended functionality.

This has also been designed to run as a `Blender Add-on`_!
Note that Blender is an isolated environment, so other packages can not be used with it.


Project Update
^^^^^^^^^^^^^^

In this release, curses is back online.
Tkinter, Curses, and Pygame should all have a functioning image viewer.
For the best results, use Pygame.
[MacOS is having trouble with tkinter and Windows wont run curses natively.]

On Windows, it is recommended to install the Pillow package for the best results.

On MacOS, it is recommended to NOT install the Pillow package because of an unknown issue with the wrapper class. 
Blender support is something I still care about, but it is going to take a lot of work to fix it.
The only real issue is that I need to wait until Blender has Python 3.12 before I can work on it again.

I might drop support for DearPyGui because that is what the package author seems to be doing.
Though I could replace it with their new package, pilotlight.


Commands
********

Command line arguments to use when launching the application.


Applications
^^^^^^^^^^^^

Built in application to try out.
[The Translator application is probably broken.]

+-------------+-------------------------+------------------------------------------------------------------+
| Application | Command                 | Information                                                      |
+=============+=========================+==================================================================+
| Clean       | celestine -a clean      | Runs several code formatting  tools to get ready for publishing. |
+-------------+-------------------------+------------------------------------------------------------------+
| Demo        | celestine -a demo       | Test application for changing screens with buttons.              |
+-------------+-------------------------+------------------------------------------------------------------+
| Translator  | celestine -a translator | Translate the default language file into the 24 other languages. |
+-------------+-------------------------+------------------------------------------------------------------+
| Viewer      | celestine -a viewer     | Test application for viewing a limited number of images.         |
+-------------+-------------------------+------------------------------------------------------------------+

Caution: By default the viewer application will try to load every image it finds begining with the current working directory.


Graphical User Interfaces
^^^^^^^^^^^^^^^^^^^^^^^^^

[Blender is not working because the current version of Blender still runs on Python 3.11.]
[DearPyGui is not working because I have not kept up its maintenance either.]

+--------------+------------------------------+--------------+
| Interface    | Source                       | Command      |
+==============+==============================+==============+
| `blender`_   | Blender Foundation [1]_      | -i blender   |
+--------------+------------------------------+--------------+
| `curses`_    | Python Standard Library [2]_ | -i curses    |
+--------------+------------------------------+--------------+
| `dearpygui`_ | Python Package Index         | -i dearpygui |
+--------------+------------------------------+--------------+
| `pygame`_    | Python Package Index         | -i pygame    |
+--------------+------------------------------+--------------+
| `tkinter`_   | Python Standard Library [3]_ | -i tkinter   |
+--------------+------------------------------+--------------+


Natural Languages
^^^^^^^^^^^^^^^^^

[These translations might only be partially working because I have not updated them in a while.]

+------------+------------------+---------+
| Language   | Translation [4]_ | Command |
+============+==================+=========+
| Bulgarian  | български        | -l bg   |
+------------+------------------+---------+
| Czech      | čeština          | -l cs   |
+------------+------------------+---------+
| Danish     | dansk            | -l da   |
+------------+------------------+---------+
| German     | Deutsch          | -l de   |
+------------+------------------+---------+
| Greek      | ελληνικά         | -l el   |
+------------+------------------+---------+
| English    | English          | -l en   |
+------------+------------------+---------+
| Spanish    | español          | -l es   |
+------------+------------------+---------+
| Estonian   | eesti            | -l et   |
+------------+------------------+---------+
| Finnish    | suomi            | -l fi   |
+------------+------------------+---------+
| French     | français         | -l fr   |
+------------+------------------+---------+
| Irish      | Gaeilge          | -l ga   |
+------------+------------------+---------+
| Croatian   | hrvatski         | -l hr   |
+------------+------------------+---------+
| Hungarian  | magyar           | -l hu   |
+------------+------------------+---------+
| Italian    | italiano         | -l it   |
+------------+------------------+---------+
| Lithuanian | lietuvių         | -l lt   |
+------------+------------------+---------+
| Latvian    | latviešu         | -l lv   |
+------------+------------------+---------+
| Maltese    | Malti            | -l mt   |
+------------+------------------+---------+
| Dutch      | Nederlands       | -l nl   |
+------------+------------------+---------+
| Polish     | polski           | -l pl   |
+------------+------------------+---------+
| Portuguese | português        | -l pt   |
+------------+------------------+---------+
| Romanian   | română           | -l ro   |
+------------+------------------+---------+
| Slovak     | slovenčina       | -l sk   |
+------------+------------------+---------+
| Slovenian  | slovenščina      | -l sl   |
+------------+------------------+---------+
| Swedish    | svenska          | -l sv   |
+------------+------------------+---------+


Optional Dependencies
*********************

[Right now the Pillow package is almost required since I have not tested the non Pillow paths very much.]

+------------------------+---------------------------------------------------+
| Package                | Description                                       |
+========================+===================================================+
| `dearpygui`_           | DearPyGui: A simple Python GUI Toolkit            |
+------------------------+---------------------------------------------------+
| `pygame`_              | Python Game Development                           |
+------------------------+---------------------------------------------------+
| `windows-curses`_ [5]_ | Support for the standard curses module on Windows |
+------------------------+---------------------------------------------------+
| `pillow`_              | Python Imaging Library (Fork)                     |
+------------------------+---------------------------------------------------+


Project Links
*************

* `Documentation <https://celestine.readthedocs.io/>`_
* `Email <celestine@cyanochroite.com>`_
* `Libraries.io <https://libraries.io/pypi/celestine>`_
* `PyPI <https://pypi.org/project/celestine/>`_
* `Source <https://github.com/cyanochroite/celestine>`_
* `Tracker <https://github.com/cyanochroite/celestine/issues>`_
* `Discord <https://discord.gg/aNmDWPXd7B>`_


Disclosures
***********

* This project is Free and Open Source software.
* This project used Microsoft Copilot to aid in its development.
* This project used Microsoft Azure Translator for its language translations.
* We do not solicit or accept any financial contributions.
* We do not use, support, or endorse any form of cryptocurrency.
* Any claims of fundraising activities (for this project) are fraudulent.


Licences
^^^^^^^^

The licence for :code:`Cascadia Code` is the
`SIL Open Font License <https://scripts.sil.org/OFL>`_.

The licence for :code:`celestine` is the
`European Union Public Licence <https://eupl.eu/>`_.


Footnotes
*********

.. [1] Blender interface can only be run when this is installed as a Blender addon.
.. [2] Windows does not come with Curses.
.. [3] Not always installed. Espically on Linix.
.. [4] Language files were translated from English using the Microsoft Azure Translator.
.. [5] Package only needed on Windows. Unix and Linix already have Curses.


.. _`dearpygui`: https://pypi.org/project/dearpygui/
.. _`pillow`: https://pypi.org/project/Pillow/
.. _`pygame`: https://pypi.org/project/pygame/
.. _`windows-curses`: https://pypi.org/project/windows-curses/

.. _`curses`: https://docs.python.org/3/library/curses.html
.. _`tkinter`: https://docs.python.org/3/library/tk.html

.. _`blender`: https://www.blender.org/
.. _`Blender Add-on`: https://docs.blender.org/manual/en/latest/editors/preferences/addons.html
