-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (45 loc) · 1.11 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
[metadata]
name = pypetting
version = 1.0.1
description = Generate worklists for Tecan EVOware pipetting software
long_description = file: README.md, LICENSE.md
long_description_content_type = text/markdown
url = https://github.com/sirno/pypetting
license = MIT
[options]
packages = pypetting
install_requires =
numpy
dataclasses-json
requests
[options.extras_require]
dev = pylint; pytest; pytest-cov
[options.entry_points]
console_scripts =
pypetting-message-service = pypetting.message:message_service
[tox:tox]
envlist = py310
isolated_build = True
[gh-actions]
python =
3.10: py310
[testenv]
commands =
pip install .[dev]
pylint --fail-under=9.5 pypetting
coverage erase
pytest test --cov={envsitepackagesdir}/pypetting {posargs}
coverage report
[coverage:run]
relative_files = True
omit = test/*
[pylint.MESSAGES CONTROL]
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
too-many-arguments