Initial skel
This commit is contained in:
1
docs/authors.rst
Normal file
1
docs/authors.rst
Normal file
@@ -0,0 +1 @@
|
||||
.. include:: ../AUTHORS.rst
|
||||
1
docs/changelog.rst
Normal file
1
docs/changelog.rst
Normal file
@@ -0,0 +1 @@
|
||||
.. include:: ../CHANGELOG.rst
|
||||
47
docs/conf.py
Normal file
47
docs/conf.py
Normal file
@@ -0,0 +1,47 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import os
|
||||
|
||||
extensions = [
|
||||
'sphinx.ext.autodoc',
|
||||
'sphinx.ext.autosummary',
|
||||
'sphinx.ext.coverage',
|
||||
'sphinx.ext.doctest',
|
||||
'sphinx.ext.extlinks',
|
||||
'sphinx.ext.ifconfig',
|
||||
'sphinx.ext.napoleon',
|
||||
'sphinx.ext.todo',
|
||||
'sphinx.ext.viewcode',
|
||||
]
|
||||
source_suffix = '.rst'
|
||||
master_doc = 'index'
|
||||
project = 'cryptbase'
|
||||
year = '2021'
|
||||
author = 'Alexandr Mansurov'
|
||||
copyright = '{0}, {1}'.format(year, author)
|
||||
version = release = '0.0.0'
|
||||
|
||||
pygments_style = 'trac'
|
||||
templates_path = ['.']
|
||||
extlinks = {
|
||||
'issue': ('https://https://code.eghuro.com/cryptbase/python-cryptbase/issues/%s', '#'),
|
||||
'pr': ('https://https://code.eghuro.com/cryptbase/python-cryptbase/pull/%s', 'PR #'),
|
||||
}
|
||||
# on_rtd is whether we are on readthedocs.org
|
||||
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
||||
|
||||
if not on_rtd: # only set the theme if we're building docs locally
|
||||
html_theme = 'sphinx_rtd_theme'
|
||||
|
||||
html_use_smartypants = True
|
||||
html_last_updated_fmt = '%b %d, %Y'
|
||||
html_split_index = False
|
||||
html_sidebars = {
|
||||
'**': ['searchbox.html', 'globaltoc.html', 'sourcelink.html'],
|
||||
}
|
||||
html_short_title = '%s-%s' % (project, version)
|
||||
|
||||
napoleon_use_ivar = True
|
||||
napoleon_use_rtype = False
|
||||
napoleon_use_param = False
|
||||
1
docs/contributing.rst
Normal file
1
docs/contributing.rst
Normal file
@@ -0,0 +1 @@
|
||||
.. include:: ../CONTRIBUTING.rst
|
||||
21
docs/index.rst
Normal file
21
docs/index.rst
Normal file
@@ -0,0 +1,21 @@
|
||||
========
|
||||
Contents
|
||||
========
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 2
|
||||
|
||||
readme
|
||||
installation
|
||||
usage
|
||||
reference/index
|
||||
contributing
|
||||
authors
|
||||
changelog
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
||||
* :ref:`genindex`
|
||||
* :ref:`modindex`
|
||||
* :ref:`search`
|
||||
7
docs/installation.rst
Normal file
7
docs/installation.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
============
|
||||
Installation
|
||||
============
|
||||
|
||||
At the command line::
|
||||
|
||||
pip install cryptbase
|
||||
1
docs/readme.rst
Normal file
1
docs/readme.rst
Normal file
@@ -0,0 +1 @@
|
||||
.. include:: ../README.rst
|
||||
9
docs/reference/cryptbase.rst
Normal file
9
docs/reference/cryptbase.rst
Normal file
@@ -0,0 +1,9 @@
|
||||
cryptbase
|
||||
=========
|
||||
|
||||
.. testsetup::
|
||||
|
||||
from cryptbase import *
|
||||
|
||||
.. automodule:: cryptbase
|
||||
:members:
|
||||
7
docs/reference/index.rst
Normal file
7
docs/reference/index.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
Reference
|
||||
=========
|
||||
|
||||
.. toctree::
|
||||
:glob:
|
||||
|
||||
cryptbase*
|
||||
2
docs/requirements.txt
Normal file
2
docs/requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
sphinx>=1.3
|
||||
sphinx-rtd-theme
|
||||
11
docs/spelling_wordlist.txt
Normal file
11
docs/spelling_wordlist.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
builtin
|
||||
builtins
|
||||
classmethod
|
||||
staticmethod
|
||||
classmethods
|
||||
staticmethods
|
||||
args
|
||||
kwargs
|
||||
callstack
|
||||
Changelog
|
||||
Indices
|
||||
7
docs/usage.rst
Normal file
7
docs/usage.rst
Normal file
@@ -0,0 +1,7 @@
|
||||
=====
|
||||
Usage
|
||||
=====
|
||||
|
||||
To use cryptbase in a project::
|
||||
|
||||
import cryptbase
|
||||
Reference in New Issue
Block a user