File: setup.cfg

package info (click to toggle)
python-upsetplot 0.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,188 kB
  • sloc: python: 2,772; makefile: 153; sh: 12
file content (26 lines) | stat: -rw-r--r-- 763 bytes parent folder | download | duplicates (2)
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
[metadata]
description = Draw Lex et al.'s UpSet plots with Pandas and Matplotlib
long_description = file: README.rst
author = Joel Nothman
author_email = joel.nothman@gmail.com
url = https://upsetplot.readthedocs.io
license = BSD 3-Clause License
classifiers =
    License :: OSI Approved :: BSD License
	Programming Language :: Python :: 3
	Programming Language :: Python :: 3.6
	Programming Language :: Python :: 3.10
	Topic :: Scientific/Engineering :: Visualization
	Intended Audience :: Science/Research

[aliases]
test = pytest

[tool:pytest]
addopts = --doctest-modules --verbose --cov=upsetplot --showlocals
# --cov=upsetplot
testpaths = upsetplot README.rst
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE ELLIPSIS

[flake8]
ignore = W503,W504