-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
61 lines (51 loc) · 1.46 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
##########################################################################
### PyPI package info
##########################################################################
[metadata]
name = baltimorestrings.argparse_showhelp
summary = Argparse Personal Defaults
description_file =
README.md
author = baltimorestrings
home_page = https://github.com/baltimorestrings/argparse_showhelp
license = LICENSE
classifier =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3.11
long_description = A simple ArgParse that displays help on error, and uses a saner default formatter
version = 0.1.1
##########################################################################
### Namespace Crafting
##########################################################################
[options.packages.find]
where=src
[options]
packages = find_namespace:
package_dir =
=src
python_requires =
>= 3.11
##########################################################################
### Package Dependencies
##########################################################################
[options.extras_require]
test =
pytest
black
pycodestyle
[flake8]
max-line-length = 120
ignore = E722, E126, W291
exclude = migrations
[pylint]
max-line-length = 120
ignore = E722, E126, W291
exclude = migrations
[pep8]
max-line-length = 120
ignore = E722, E126, W291
exclude = migrations
[pycodestyle]
max-line-length = 120
ignore = E722, E126, W291
exclude = migrations