This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
forked from DanielNoord/pydocstringformatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
43 lines (40 loc) · 1.48 KB
/
setup.cfg
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
[metadata]
name = pydocstringformatter
version = attr: pydocstringformatter.__version__
author = Daniël van Noord
author_email = [email protected]
description = A tool to automatically format Python docstrings that tries to follow recommendations from PEP 8 and PEP 257.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Quality Assurance
keywords = python docstring format
project_urls =
Repository = https://github.com/DanielNoord/pydocstringformatter
Releases = https://github.com/DanielNoord/pydocstringformatter/releases
Bug Tracker = https://github.com/DanielNoord/pydocstringformatter/issues
[options]
python_requires = >=3.8
packages = find:
install_requires =
tomli >= 1.1.0
[options.packages.find]
include =
pydocstringformatter*
[options.entry_points]
console_scripts =
pydocstringformatter = pydocstringformatter:run_docstring_formatter