-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (55 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (55 loc) · 1.25 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
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
[project]
name = "dppd-plotnine"
version = "0.2.10"
description = "Combines plotnine and dppd"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Florian Finkernagel", email = "finkernagel@imt.uni-marburg.de"}
]
license={file="LICENSE.txt"}
dependencies = [
"plotnine>=0.13",
"mizani>=0.13",
"dppd",
]
[project.urls]
Repository = "https://github.com/TyberiusPrime/dppd_plotnine"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
dev = [
"build",
"numpydoc",
"plotnine",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-bootstrap-theme",
"ruff"
]
[tool.ruff]
exclude = [
"docs"
]
[tool.pytest.ini_options]
# Options for py.test:
# Specify command line options as you would do when invoking py.test directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
addopts = """
--cov dppd_plotnine --cov-report term-missing
--verbose
"""
norecursedirs = [
"dist",
"build",
".tox",
]
testpaths = "tests"
filterwarnings = [
"ignore:::statsmodels.base.wrapper:100",
"ignore:::patsy.constraint:13",
"ignore:::matplotlib.backends.backend_wx:",
]