blob: c1c19a12620a9745654e0c33b9a7c318c11a88cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/usr/bin/env python3
# :Copyright: © 2022 Günter Milde.
# :License: Released under the terms of the `2-Clause BSD license`_, in short:
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.
# This file is offered as-is, without any warranty.
#
# .. _2-Clause BSD license: https://opensource.org/licenses/BSD-2-Clause
#
# Revision: $Revision$
# Date: $Date$
"""Generic command line interface for the `docutils` package.
Deprecated:
Call `docutils` (generated in the binary PATH during package installation)
or `python3 -m docutils` to get the generic Docutils CLI.
"""
from docutils import __main__
__main__.main()
|