-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
128 lines (107 loc) · 2.25 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[bumpversion]
current_version = 0.5.2
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}
[metadata]
name = Barney
summary = "Barney your way to viewing a signal"
author = "Ognyan Moore"
description = "Barney your way to viewing a signal"
author-email = [email protected]
home-page = "https://github.com/j9ac9k/barney"
license_file = LICENSE
long-description = file: README.md
long_description_content_type = text/markdown
keywords = Barney
classifiers =
Programming Language :: Python :: 3.9
[options]
zip_safe = False
package_dir =
=src
install_requires =
numpy
scipy
pandas
signalworks
pyqt5
pyqtgraph
qtpy
soundfile
sounddevice
typing_extensions
packages = find:
[options.extras_require]
test = pytest; pytest-qt
[options.packages.find]
where = src
[options.entry_points]
gui_scripts =
barney = barney.__main__:main
[bdist_wheel]
python-tag = py39
[flake8]
max-line-length = 120
ignore = E203, E266, E501, W503, B950
exclude =
.eggs
.git,
.venv,
__pycache__,
docs/source/conf.py,
old,
build,
dist,
target,
ci-helpers,
setup.cfg,
patch/*.py
max-complexity = 18
select = B,C,E,F,W,T4,B9
python_version = 3.9
[mypy]
python_version = 3.9
namespace_packages = True
show_column_numbers = True
show_error_context = False
ignore_missing_imports = False
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_untyped_decorators = False
disallow_incomplete_defs = True
check_untyped_defs = True
warn_return_any = False
warn_no_return = True
warn_redundant_casts = True
warn_unused_ignores = True
[mypy-qtpy.*]
ignore_missing_imports = True
[mypy-signalworks.*]
ignore_missing_imports = True
[mypy-pyqtgraph.*]
ignore_missing_imports = True
[mypy-numpy]
ignore_missing_imports = True
[mypy-pandas]
ignore_missing_imports = True
[mypy-scipy.signal]
ignore_missing_imports = True
[mypy-scipy.io.wavfile]
ignore_missing_imports = True
[mypy-sounddevice]
ignore_missing_imports = True
[mypy-soundfile]
ignore_missing_imports = True
[mypy-tests.*]
ignore_errors = True
[mypy-patch.*]
ignore_missing_imports = True
ignore_errors = True
follow_imports = skip
[aliases]
test = pytest
[bumpversion:file:src/barney/__version__.py]