forked from PandABlocks/PandABlocks-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
66 lines (56 loc) · 1.7 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
[metadata]
name = pandablocks
description = A Python client to control and data ports of the PandABlocks TCP server
url = https://github.com/PandABlocks/PandABlocks-client
author = Tom Cobb
author_email = [email protected]
license = Apache License 2.0
long_description = file: README.rst
long_description_content_type = text/x-rst
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
packages = find:
install_requires =
numpy
click
[options.extras_require]
hdf5 =
matplotlib
h5py
[options.entry_points]
# Include a command line script
console_scripts =
pandablocks = pandablocks.cli:cli
[options.packages.find]
# Don't include our tests directory in the distribution
exclude = tests
[options.package_data]
pandablocks =
saves/*.sav
[mypy]
# Ignore missing stubs for modules we use
ignore_missing_imports = True
[isort]
profile=black
float_to_top=true
skip=setup.py,conf.py,build
[flake8]
# Make flake8 respect black's line length (default 88),
max-line-length = 88
extend-ignore =
E203, # See https://github.com/PyCQA/pycodestyle/issues/373
F811, # support typing.overload decorator
F722, # allow Annotated[typ, some_func("some string")]
[tool:pytest]
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
addopts =
--tb=native -vv --flake8 --black --mypy --doctest-modules --doctest-glob="*.rst"
--cov=pandablocks --cov-report term --cov-report xml:cov.xml
[coverage:run]
# This is covered in the versiongit test suite so exclude it here
omit = */_version_git.py