|
20 | 20 | import sys
|
21 | 21 | sys.path.insert(0, os.path.abspath('..'))
|
22 | 22 |
|
23 |
| -# -- General configuration ------------------------------------------------ |
| 23 | + |
| 24 | +# -- Project information ----------------------------------------------------- |
| 25 | + |
| 26 | +project = u'tlslite-ng' |
| 27 | +copyright = u'2023, Hubert Kario' |
| 28 | +author = u'Hubert Kario' |
| 29 | + |
| 30 | +# The version info for the project you're documenting, acts as replacement for |
| 31 | +# |version| and |release|, also used in various other places throughout the |
| 32 | +# built documents. |
| 33 | +# |
| 34 | +# The short X.Y version. |
| 35 | +version = u'0.8' |
| 36 | +# The full version, including alpha/beta/rc tags. |
| 37 | +release = u'0.8.0-beta1' |
| 38 | + |
| 39 | + |
| 40 | +# -- General configuration --------------------------------------------------- |
24 | 41 |
|
25 | 42 | # If your documentation needs a minimal Sphinx version, state it here.
|
26 | 43 | #
|
|
32 | 49 | extensions = [
|
33 | 50 | 'sphinx.ext.autodoc',
|
34 | 51 | 'sphinx.ext.intersphinx',
|
| 52 | + 'sphinx.ext.coverage', |
| 53 | + 'sphinx.ext.imgmath', |
| 54 | + 'sphinx.ext.viewcode', |
35 | 55 | ]
|
36 | 56 |
|
37 | 57 | # Add any paths that contain templates here, relative to this directory.
|
|
50 | 70 | # The master toctree document.
|
51 | 71 | master_doc = 'index'
|
52 | 72 |
|
53 |
| -# General information about the project. |
54 |
| -project = u'tlslite-ng' |
55 |
| -copyright = u'2023, Hubert Kario' |
56 |
| -author = u'Hubert Kario' |
57 |
| - |
58 |
| -# The version info for the project you're documenting, acts as replacement for |
59 |
| -# |version| and |release|, also used in various other places throughout the |
60 |
| -# built documents. |
61 |
| -# |
62 |
| -# The short X.Y version. |
63 |
| -version = u'0.8' |
64 |
| -# The full version, including alpha/beta/rc tags. |
65 |
| -release = u'0.8.0-beta1' |
66 |
| - |
67 | 73 | # The language for content autogenerated by Sphinx. Refer to documentation
|
68 | 74 | # for a list of supported languages.
|
69 | 75 | #
|
70 | 76 | # This is also used if you do content translation via gettext catalogs.
|
71 | 77 | # Usually you set "language" from the command line for these cases.
|
72 |
| -language = None |
| 78 | +language = "en" |
73 | 79 |
|
74 | 80 | # There are two options for replacing |today|: either, you set today to some
|
75 | 81 | # non-false value, then it is used:
|
|
320 | 326 | # dir menu entry, description, category)
|
321 | 327 | texinfo_documents = [
|
322 | 328 | (master_doc, 'tlslite-ng', u'tlslite-ng Documentation',
|
323 |
| - author, 'tlslite-ng', 'One line description of project.', |
| 329 | + author, 'tlslite-ng', 'Pure python implementation of TLS.', |
324 | 330 | 'Miscellaneous'),
|
325 | 331 | ]
|
326 | 332 |
|
|
0 commit comments