-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
69 lines (61 loc) · 1.3 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
63
64
65
66
67
68
69
[metadata]
name = daidepp
version = 2.0.4
author = Byung Oh
author_email = byung.oh@cynnovative.com
description = "DAIDE Parser"
long_description = file: README.md
long_description_content_type = text/markdown
[options]
package_dir =
=src
packages = find:
python_requires = >=3.7
install_requires =
parsimonious==0.9.0
importlib-metadata>=1.4.0 ; python_version < "3.8"
[options.packages.find]
where = src
[options.extras_require]
dev =
black>=22.8.0
docformatter==1.4
isort>=5.10.1
pydocstyle==6.1.1
pylint==2.12.2
pytest==7.0.0
pytest-black==0.3.12
pytest-cov==3.0.0
pytest-dependency==0.5.1
pytest-mypy==0.9.1
pytest-timeout==2.1.0
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88
known_first_party = daidepp
[mypy]
ignore_missing_imports = True
disallow_untyped_calls = False
disallow_untyped_defs = True
disallow_incomplete_defs = True
files = src/
exclude = tests/
follow_imports = silent
[tool:pytest]
testpaths = src/ tests/
addopts =
--black
--cov=daidepp
--cov-report html
timeout = 10
filterwarnings =
ignore::DeprecationWarning
[pylint.MESSAGES CONTROL]
extension-pkg-whitelist =
pydantic
[pydocstyle]
convention = numpy
add_ignore = D2,D105,D101,D100,D104,D106