-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
70 lines (62 loc) · 1.33 KB
/
setup.cfg
File metadata and controls
70 lines (62 loc) · 1.33 KB
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
70
[metadata]
name = daidepp
version = 2.0.6
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"
typing_extensions>=3.10.0.0 ; python_version < "3.8"
[options.packages.find]
where = src
[options.extras_require]
dev =
black==23.3.0
docformatter==1.7.5
isort==5.11.5
pydocstyle==6.3.0
pylint==2.17.7
pytest==7.4.4
pytest-black==0.6.0
pytest-cov==4.1.0
pytest-dependency==0.6.0
pytest-mypy==0.10.3
pytest-timeout==2.3.1
[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 =
error
[pylint.MESSAGES CONTROL]
extension-pkg-whitelist =
pydantic
[pydocstyle]
convention = numpy
add_ignore = D2,D105,D101,D100,D104,D106