-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (63 loc) · 1.77 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
69
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "evaldet"
description = "Evaluation for Detection and Tracking"
license = "Apache-2.0"
authors = [
{ name = "Tadej", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.9"
keywords = ["evaluation", "tracking", "object detection", "computer vision"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering :: Image Recognition",
]
dependencies = [
"numpy>=1.23",
"scipy>=1.9",
"numba>=0.56",
"pyarrow>=10.0"
]
dynamic = ["version"]
[tool.hatch.version]
path = "src/evaldet/__init__.py"
[project.urls]
Documentation = "https://evaldet.readthedocs.io"
Issues = "https://github.com/tadejsv/evaldet/issues"
Source = "https://github.com/sasp-ai/evaldet"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.vscode",
"/docs",
"/tests"
]
[tool.ruff]
select = ["E", "F", "Q", "N", "ANN", "T20", "TID", "SIM"]
ignore = ["N806", "N805", "E501", "ANN101", "ANN102", "SIM108"]
target-version = "py310"
extend-exclude = ["old_docs/source/conf.py"]
[tool.ruff.flake8-quotes]
docstring-quotes = "double"
[tool.isort]
profile = "black"
[tool.mypy]
exclude = ['old_docs/source/conf.py']
disallow_untyped_defs = true
ignore_missing_imports = false
disallow_any_unimported = false
no_implicit_optional = true
check_untyped_defs = true
warn_unused_ignores = true
show_error_codes = true
[[tool.mypy.overrides]]
module = ["scipy.*", "pyarrow.*", "numba.*", "deepdiff.*"]
ignore_missing_imports = true