11[metadata]
22name = doc8
3- summary = Style checker for Sphinx (or other) RST documentation
4- description_file =
5- README.rst
3+ url = https://github.com/pycqa/doc8
4+ project_urls =
5+ Bug Tracker = https://github.com/pycqa/doc8/issues
6+ Release Management = https://github.com/pycqa/doc8/releases
7+ CI = https://github.com/pycqa/doc8/actions
8+ Documentation = https://doc8.readthedocs.io
9+ Discussions = https://github.com/pycqa/doc8/discussions
10+
11+ description = Style checker for Sphinx (or other) RST documentation
12+ long_description = file: README.rst
13+ long_description_content_type = text/x-rst
614author = OpenStack
715author_email = openstack-discuss@lists.openstack.org
816maintainer = PyCQA
917maintainer_email = code-quality@python.org
10- home_page = https://github.com/pycqa/doc8
11- long_description_content_type = text/x-rst
12- classifier =
18+ license = Apache 2.0
19+ license_file = LICENSE
20+ classifiers =
21+ Development Status :: 5 - Production/Stable
22+
23+ Environment :: Console
24+
25+ Intended Audience :: Developers
1326 Intended Audience :: Information Technology
1427 Intended Audience :: System Administrators
15- Intended Audience :: Developers
16- Development Status :: 4 - Beta
17- Topic :: Utilities
1828 License :: OSI Approved :: Apache Software License
1929 Operating System :: POSIX :: Linux
2030 Programming Language :: Python
@@ -24,10 +34,12 @@ classifier =
2434 Programming Language :: Python :: 3.8
2535 Programming Language :: Python :: 3.9
2636 Programming Language :: Python :: 3.10
27-
28- [entry_points]
29- console_scripts =
30- doc8 = doc8.main:main
37+ Topic :: System :: Systems Administration
38+ Topic :: Utilities
39+ keywords =
40+ doc8
41+ rst
42+ linter
3143
3244[flake8]
3345builtins = _
@@ -39,10 +51,23 @@ max_line_length=160
3951extend_ignore = E203
4052
4153[options]
54+ use_scm_version = True
4255python_requires = >=3.6
56+ package_dir =
57+ = src
58+ packages = find:
59+ include_package_data = True
60+ zip_safe = False
4361# These are required in actual runtime:
4462install_requires =
4563 docutils
4664 restructuredtext-lint>=0.7
4765 stevedore
4866 Pygments
67+
68+ [options.entry_points]
69+ console_scripts =
70+ doc8 = doc8.main:main
71+
72+ [options.packages.find]
73+ where = src
0 commit comments