-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (58 loc) · 1.58 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
[tool.poetry]
name = "np-logging"
version = "0.5.0"
description = "Pre-configured file, web, and email logging for Mindscope neuropixels projects, repackaging code from AIBS mpeconfig."
authors = [
"Ben Hardcastle <[email protected]>",
"Ross Hytnen <[email protected]>",
"Ben Sutton <[email protected]>",
]
maintainers = ["Ben Hardcastle <[email protected]>"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
packages = [{include = "np_logging", from = "src"}]
[tool.poetry.urls]
"Repository" = "https://github.com/alleninstitute/np_logging"
"Bug Tracker" = "https://github.com/alleninstitute/np_logging/issues"
[tool.poetry.dependencies]
python = "^3.7"
np_config = ">0.4.12"
importlib_resources = ">1.4"
[tool.poetry.group.dev.dependencies]
pip-tools = "*"
isort = "*"
mypy = "*"
black = "*"
pytest = "*"
coverage = {extras = ["toml"], version = "^7.1.0"}
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--doctest-modules",
# "--pdb",
# "--pdbcls=IPython.terminal.debugger:TerminalPdb",
]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ELLIPSIS",
]
testpaths = [
"tests",
"src",
]
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["np_logging"]
[tool.coverage.report]
show_missing = true