-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (43 loc) · 1010 Bytes
/
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
[metadata]
name = py-demo
version = 0.0.3
description = Minimal Python Project
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/cfclrk/py-demo
project_urls =
Source = https://github.com/cfclrk/py-demo
Tracker = https://github.com/cfclrk/py-demo/issues
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
[options.packages.find]
where = src
[options.package_data]
py_demo.data_files = *
[options.extras_require]
dev =
black
flake8
isort
mypy
pytest
[options.entry_points]
console_scripts =
py-demo = py_demo.cli:cli
[flake8]
# See: https://black.readthedocs.io/en/stable/compatible_configs.html
max-line-length = 88
extend-ignore = E203, W503
[mypy]
ignore_missing_imports = true
[isort]
# See: https://black.readthedocs.io/en/stable/compatible_configs.html
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88