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