1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
Metadata-Version: 2.1
Name: sphinx_celery
Version: 2.1.3
Summary: Sphinx Celery Theme.
Home-page: http://github.com/celery/sphinx_celery
Author: Ask Solem
Author-email: ask@celeryproject.org
License: BSD
Keywords: sphinx docs
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: BSD License
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
License-File: LICENSE
License-File: AUTHORS
=====================================================================
Celery Sphinx Utilities
=====================================================================
:Version: 2.1.3
:Download: http://pypi.python.org/pypi/sphinx_celery/
:Source: http://github.com/celery/sphinx_celery/
:Keywords: Sphinx, documentation, python
About
=====
This project provides the Celery sphinx theme and common Sphinx utilities.
.. _installation:
Installation
============
You can install sphinx_celery either via the Python Package Index (PyPI)
or from source.
To install using `pip`,::
$ pip install -U sphinx_celery
To install using `easy_install`,::
$ easy_install -U sphinx_celery
.. _installing-from-source:
Downloading and installing from source
--------------------------------------
Download the latest version of sphinx_celery from
http://pypi.python.org/pypi/sphinx_celery/
You can install it by doing the following,::
$ tar xvfz sphinx_celery.0.0.tar.gz
$ cd sphinx_celery.0.0
$ python setup.py build
# python setup.py install
The last command must be executed as a privileged user if
you are not currently using a virtualenv.
.. _installing-from-git:
Using the development version
-----------------------------
With pip
~~~~~~~~
You can install the latest snapshot of sphinx_celery using the following
pip command::
$ pip install https://github.com/celery/sphinx_celery/zipball/master#egg=sphinx_celery
|