-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 950 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
37
38
39
40
41
42
43
44
45
46
47
[tool.poetry]
name = "plotting"
version = "0.1.0"
description = "High level functions for publication ready plots."
license = "MIT"
authors = ["Ruben Doerfel <ruben.dorfel@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
matplotlib = "^3.5.0"
[tool.poetry.dev-dependencies]
pytest = "^7.0"
pytest-cov = "^4.0"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^6.2.1"
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = "test_*.py"
python_functions = "test_*"
addopts = "--strict-markers --strict-config"
[tool.coverage.run]
source = ["plotting"]
omit = [
"*/test*",
"*/tests/*",
"*/__pycache__/*",
"*/site-packages/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
]
show_missing = true
precision = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"