forked from ethho/datajoint-file-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (56 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
67 lines (56 loc) · 1.65 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
61
62
63
64
65
66
67
[tool.poetry]
name = "datajoint-file-validator"
version = "0.1.0"
description = "A tool to validate DataJoint files and filesets"
authors = ["Ethan Ho <53266718+ethho@users.noreply.github.com>"]
license = "MIT"
include = [
{ path = "manifests", format = ["sdist", "wheel"] }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0.0"
cerberus = "^1.3.5"
typer = {version = "^0.9.0", extras = ["all"]}
pyyaml = "^6.0.1"
pytz = "^2023.3.post1"
wcmatch = "^8.5"
python-dotenv = "^1.0.0"
pyyaml-include = "^1.3.2"
[tool.poetry.scripts]
datajoint-file-validator = "datajoint_file_validator.cli:app"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.1"
pytest-cov = "^4.1.0"
black = "^23.12.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.3"
mkdocs-redirects = "^1.2.1"
mkdocs-exclude = "^1.0.2"
mdx-truly-sane-lists = "^1.3"
pymdown-extensions = "^10.7"
mkdocs-section-index = "^0.3.8"
mkdocstrings = {version = "^0.24.0", extras = ["python"]}
termynal = "^0.11.1"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
]