-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (33 loc) · 925 Bytes
/
setup.cfg
File metadata and controls
36 lines (33 loc) · 925 Bytes
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
[metadata]
name = nexusutils
version = 0.1.0
description = Python NeXus Utilities
home_page = https://github.com/ess-dmsc/python-nexus-utilities
url = https://github.com/ess-dmsc/python-nexus-utilities
license = BSD 2-clause
license_file = License.md
platform = any
[options]
packages = nexusutils
install_requires=
appdirs
h5py
numexpr
numpy
packaging
pyparsing
tables
matplotlib
tabulate
[flake8]
ignore = E501, E203, E402, W503, Q000, W293
# E501 & E203: Formatting handled by Black
# E402 complains about imports not being at the top
# W503 complains about splitting if across lines which conflicts with Black
# Q000 complains about using "" and not '' which conflicts with Black
# W293 blank lines with whitespace, conflicts with Black in doc comments
exclude = README.md, venv
[tool:pytest]
addopts = -s
junit_family=xunit2
testpaths = ./tests