-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.cfg
38 lines (34 loc) · 1.02 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
[metadata]
name = dls_puck_scanner
version = file: dls_barcode/version.py
author = 'rqq82173',
author_email = '[email protected]',
license = Apache License 2.0
description = Software used by Diamond XChem laboratory to scan codes placed on sample pins and on sample pucks.
[options]
packages = find:
install_requires=
pyqt5
opencv-python
numpy
scipy
pyperclip
pylibdmtx
# If you want to include data files in packages,
# set this to True and include a MANIFEST.in file.
include_package_data = False
[mypy]
# Ignore missing stubs for modules we use
ignore_missing_imports = True
[flake8]
# Make flake8 respect black's line length (default 88),
max-line-length = 88
# Ignore unused imports/redefinitions in __init__.py
per-file-ignores =
**/__init__.py: F401, F811
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
[tool:pytest]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
addopts = --flake8 --mypy --isort --tb=native -vv