-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.28 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
[tool.poetry]
name = "cosmos"
version = "0.0.0"
description = "Scaffolding for projects."
authors = ["Charlie Wilson <wilsoncd35@gmail.com>"]
readme = "README.md"
package-mode = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.12"
esper = "^3.3"
pytesseract = "^0.3.13"
pillow = "^11.0.0"
wand = "^0.6.13"
exifread = "^3.0.0"
python-magic = "^0.4.27"
pandas = "^2.2.3"
numpy = "^2.1.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-cov = "^6.0.0"
pytest-html = "^4.1.1"
pytest-json-ctrf = "^0.3.5"
pylint = "^3.3.1"
[tool.pytest.ini_options]
testpaths = [
"extract/test",
]
junit_logging = "all"
junit_log_passing_tests = true
log_cli = true
log_cli_level = "INFO"
log_file = "tmp/test/unit/test.log"
norecursedirs = [
".git",
".venv",
"build",
"dist",
"log",
"public",
"tmp",
]
python_files = [
"test_*.py",
]
addopts = "--html tmp/test/unit/results/index.html --ctrf tmp/test/unit/results/index.json --junitxml tmp/test/unit/results/index.xml --cov-report term --cov-report xml:tmp/test/unit/coverage/index.xml --cov-report html:tmp/test/unit/coverage/html --cov-report json:tmp/test/unit/coverage/index.json --cov-report annotate:tmp/test/unit/coverage/annotate --cov=extract"