-
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
72 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
prune .github | ||
exclude .gitignore | ||
exclude .gitreview | ||
exclude .pre-commit-config.yaml | ||
exclude .pre-commit-hooks.yaml | ||
include *.md | ||
include *.py | ||
include *.txt | ||
include .coveragerc | ||
include .pylintrc | ||
include .yamllint | ||
include mypy.ini | ||
include tox.ini | ||
recursive-include docs *.ico | ||
recursive-include docs *.png | ||
recursive-include docs *.py | ||
recursive-include docs *.rst | ||
recursive-include src *.flake8 | ||
recursive-include src *.j2 | ||
recursive-include src *.json | ||
recursive-include src *.md | ||
recursive-include src *.py | ||
recursive-include src *.rst | ||
recursive-include src *.typed | ||
recursive-include src *.yaml | ||
recursive-include src *.yamllint | ||
recursive-include src *.yml | ||
recursive-include tools *.sh | ||
recursive-exclude .mypy_cache *.* | ||
recursive-exclude docs/docstree/html *.* | ||
recursive-exclude zuul.d *.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,30 @@ | ||
[metadata] | ||
name = doc8 | ||
summary = Style checker for Sphinx (or other) RST documentation | ||
description_file = | ||
README.rst | ||
url = https://github.com/pycqa/doc8 | ||
project_urls = | ||
Bug Tracker = https://github.com/pycqa/doc8/issues | ||
Release Management = https://github.com/pycqa/doc8/releases | ||
CI = https://github.com/pycqa/doc8/actions | ||
Documentation = https://doc8.readthedocs.io | ||
Discussions = https://github.com/pycqa/doc8/discussions | ||
|
||
description = Style checker for Sphinx (or other) RST documentation | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
author = OpenStack | ||
author_email = [email protected] | ||
maintainer = PyCQA | ||
maintainer_email = [email protected] | ||
home_page = https://github.com/pycqa/doc8 | ||
long_description_content_type = text/x-rst | ||
classifier = | ||
license = Apache 2.0 | ||
license_file = LICENSE | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
|
||
Environment :: Console | ||
|
||
Intended Audience :: Developers | ||
Intended Audience :: Information Technology | ||
Intended Audience :: System Administrators | ||
Intended Audience :: Developers | ||
Development Status :: 4 - Beta | ||
Topic :: Utilities | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: POSIX :: Linux | ||
Programming Language :: Python | ||
|
@@ -24,10 +34,12 @@ classifier = | |
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
|
||
[entry_points] | ||
console_scripts = | ||
doc8 = doc8.main:main | ||
Topic :: System :: Systems Administration | ||
Topic :: Utilities | ||
keywords = | ||
doc8 | ||
rst | ||
linter | ||
|
||
[flake8] | ||
builtins = _ | ||
|
@@ -39,10 +51,23 @@ max_line_length=160 | |
extend_ignore = E203 | ||
|
||
[options] | ||
use_scm_version = True | ||
python_requires = >=3.6 | ||
package_dir = | ||
= src | ||
packages = find: | ||
include_package_data = True | ||
zip_safe = False | ||
# These are required in actual runtime: | ||
install_requires = | ||
docutils | ||
restructuredtext-lint>=0.7 | ||
stevedore | ||
Pygments | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
doc8 = doc8.main:main | ||
|
||
[options.packages.find] | ||
where = src |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters