-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (39 loc) · 938 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
[metadata]
name = sieves
version = 0.4.0
author = Matthew Upson, Nick Sorros, Raphael Mitsch, Matthew Maufe, Angelo Di Gianvito
author_email = [email protected]
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/MantisAI/sieves
[options]
packages = find:
python_requires = >=3.9
install_requires =
[options.packages.find]
where = sieves
[coverage:run]
source = sieves/
omit = *__init__*
[coverage:report]
show_missing = True
precision = 2
sort = Miss
[flake8]
max-line-length = 120
extend-ignore = E203
exclude = .git,__pycache__,build,dist,./examples/*
max-complexity = 10
per-file-ignores =
*/__init__.py: F401
[mypy]
mypy_path=./sieves
python_version = 3.10
ignore_missing_imports = True
disallow_any_unimported = True
disallow_untyped_defs = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unused_configs = True
[mypy-examples.*]
follow_imports = skip