|
| 1 | +[build-system] |
| 2 | +requires = ['pip>=20.3', 'setuptools>=61', 'wheel'] |
| 3 | +build-backend = 'setuptools.build_meta' |
| 4 | + |
| 5 | +[project] |
| 6 | +name = 'flake8-rst-docstrings' |
| 7 | +description = 'Python docstring reStructuredText (RST) validator for flake8' |
| 8 | +keywords = ['strings', 'formatting', 'style', 'docstrings', 'reStructuredText'] |
| 9 | +license = {text = 'MIT'} |
| 10 | +readme = 'README.rst' |
| 11 | +authors = [ |
| 12 | + {name = 'Peter J. A. Cock'} |
| 13 | +] |
| 14 | +maintainers = [ |
| 15 | + {name = 'Peter J. A. Cock', email = 'p.j.a.cock@googlemail.com'} |
| 16 | +] |
| 17 | +classifiers = [ |
| 18 | + 'Development Status :: 4 - Beta', |
| 19 | + 'Intended Audience :: Developers', |
| 20 | + 'Framework :: Flake8', |
| 21 | + 'License :: OSI Approved :: MIT License', |
| 22 | + 'Operating System :: OS Independent', |
| 23 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 24 | + 'Topic :: Software Development :: Quality Assurance', |
| 25 | + 'Programming Language :: Python', |
| 26 | + 'Programming Language :: Python :: 3', |
| 27 | + 'Programming Language :: Python :: 3 :: Only' |
| 28 | +] |
| 29 | +requires-python = '>=3.7' |
| 30 | +dependencies = [ |
| 31 | + 'flake8>=3', |
| 32 | + 'restructuredtext_lint', |
| 33 | + 'pygments', |
| 34 | +] |
| 35 | +dynamic = ['version'] |
| 36 | +[project.entry-points] |
| 37 | +'flake8.extension' = {RST = 'flake8_rst_docstrings:reStructuredTextChecker'} |
| 38 | +[project.optional-dependencies] |
| 39 | +develop = ['build', 'twine'] |
| 40 | +[project.urls] |
| 41 | +Homepage = 'https://github.com/peterjc/flake8-rst-docstrings' |
| 42 | +'Source Code' = 'https://github.com/peterjc/flake8-rst-docstrings/' |
| 43 | +'Bug Tracker' = 'https://github.com/peterjc/flake8-rst-docstrings/issues' |
| 44 | +Documentation = 'https://github.com/peterjc/flake8-rst-docstrings/blob/master/README.rst' |
| 45 | + |
| 46 | +[tool.setuptools] |
| 47 | +py-modules = ['flake8_rst_docstrings'] |
| 48 | +zip-safe = true |
| 49 | +[tool.setuptools.dynamic] |
| 50 | +version = {attr = 'flake8_rst_docstrings.__version__'} |
0 commit comments