-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
62 lines (56 loc) · 1.51 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[metadata]
name = docconvert
version = 2.2.0
description = Convert and conform package docstrings to a new style
long_description = file: README.md
long_description_content_type = text/markdown
keywords = docstrings, convert-docstrings, formatter
license = BSD 3-Clause License
license_files = LICENSE.md
url = https://github.com/cbillingham/docconvert
project_urls=
Documentation = https://docconvert.readthedocs.io/
Changelog = https://docconvert.readthedocs.io/en/stable/release_notes.html
Issue Tracker = https://github.com/cbillingham/docconvert/issues
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
package_dir=
=src
packages=find:
python_requires = >=3.9
install_requires =
six
enum34;python_version<"3.4"
tests_require =
pytest
[options.packages.find]
where=src
[options.extras_require]
dev =
black
tox
pre-commit
doc =
sphinx
sphinx-rtd-theme
[options.entry_points]
console_scripts =
docconvert = docconvert.cli:run
[bdist_wheel]
universal=1
[flake8]
# flake 8 configuration for black
max-line-length = 88
select = C,E,F,W,B
ignore = E501,W503,E203