-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (30 loc) · 1.01 KB
/
setup.cfg
File metadata and controls
34 lines (30 loc) · 1.01 KB
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
[metadata]
name = labeledmatrix
version = attr: version.__version__
description = Matrix operations with named rows and columns
long_description = file: README.md
url = https://github.com/tinyclues/labeledmatrix
classifiers =
Programming Language :: Python :: 3.9
[options]
packages = find:
zip_safe = False
[options.packages.find]
exclude = tests
[tool:pytest]
addopts =
-rA -v --color=yes --showlocals --durations=10 --doctest-modules
--cov=labeledmatrix --cov=cyperf --cov-report=term
testpaths =
tests
# TODO add doctests back: cyperf,labeledmatrix
[pylint.FORMAT]
max-line-length = 120
[pylint.MESSAGES CONTROL]
disable = no-name-in-module,fixme,too-many-lines,too-many-instance-attributes,too-many-arguments,too-many-locals,
too-many-public-methods,import-error,import-outside-toplevel,protected-access,attribute-defined-outside-init
[pylint.BASIC]
good-names = i,j,k,f,X,y,ks,n,m,lm,_,w,ww,h,hh,u,uu,s,v,nb,ax,x,p,
bad-names=foo,bar,baz,toto,tutu,tata
[pylint.REPORTS]
output-format = colorized