Metadata-Version: 2.4
Name: ganga
Version: 8.7.12
Summary: Job management tool
Home-page: https://github.com/ganga-devs/ganga
Author: Ganga Developers
Author-email: project-ganga-developers@cern.ch
License: GPL v2
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
License-File: LICENSE_GPL
Requires-Dist: ipython>=5.0.0
Requires-Dist: aiofile>=3.7.4
Requires-Dist: aiohttp>=3.8.4
Requires-Dist: absl-py>=0.1.2
Requires-Dist: google-api-python-client
Requires-Dist: google-auth-httplib2
Requires-Dist: google-auth-oauthlib
Requires-Dist: requests>=2.23.0
Requires-Dist: docker
Requires-Dist: pymongo
Requires-Dist: gdown
Requires-Dist: htcondor
Provides-Extra: dev
Requires-Dist: coverage; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: pytest-pylint; extra == "dev"
Requires-Dist: pytest-mock; extra == "dev"
Provides-Extra: profiler
Requires-Dist: memory_profiler; extra == "profiler"
Provides-Extra: lhcb
Requires-Dist: LbDevTools; extra == "lhcb"
Provides-Extra: dirac
Requires-Dist: UltraDict; extra == "dirac"
Requires-Dist: psutil; extra == "dirac"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: summary

Ganga
=====

Ganga is a tool to compose, run and track computing jobs across a variety of backends and application types.

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

Ganga can be installed using the standard Python tool ``pip`` with

.. code-block:: bash

    pip install ganga

Usage
-----

Ganga primarily runs as a command-line tool so can be started by just running

.. code-block:: bash

    ganga

Which will load an interactive IPython prompt at which you can type

.. code-block:: python

    j = Job()
    j.submit()
    j.peek('stdout')

to create a simple local job which runs an executable which simply prints some text to the stdout.

Documentation
-------------

`User guide and developer documentation <https://ganga.readthedocs.io/en/latest/index.html>`_
