-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
134 lines (116 loc) · 3.36 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[tool.poetry]
name = "open-image-models"
version = "0.2.0"
description = "Pre-trained image models using ONNX for fast, out-of-the-box inference."
authors = ["ankandrew <61120139+ankandrew@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/ankandrew/open-image-models"
license = "MIT"
keywords = [
"image-processing",
"computer-vision",
"deep-learning",
"image-classification",
"object-detection",
"open-source-models",
"onnx",
]
classifiers = [
"Typing :: Typed",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Build Tools",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=1.20"
# Install onnxruntime-gpu only on systems other than macOS or Raspberry Pi
onnxruntime-gpu = { version = ">=1.19.2", markers = "sys_platform != 'darwin' and platform_machine != 'armv7l' and platform_machine != 'aarch64' and (platform_system == 'Linux' or platform_system == 'Windows')" }
# Fallback to onnxruntime for macOS, Raspberry Pi, and other unsupported platforms
onnxruntime = { version = ">=1.19.2", markers = "sys_platform == 'darwin' or platform_machine == 'armv7l' or platform_machine == 'aarch64'" }
opencv-python = "*"
tqdm = "*"
rich = "*"
# Optional packages for creating the docs
mkdocs-material = { version = "*", optional = true }
mkdocstrings = { version = "*", extras = ["python"], optional = true }
mike = { version = "*", optional = true }
[tool.poetry.extras]
docs = ["mkdocs-material", "mkdocstrings", "mike"]
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.dev.dependencies]
mypy = "*"
ruff = "*"
pylint = "*"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
"W",
# Pyflakes
"F",
# pep8-naming
"N",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# flake8-unused-arguments
"ARG",
# Pylint
"PL",
# Perflint
"PERF",
# Ruff-specific rules
"RUF",
# pandas-vet
"PD",
]
ignore = ["N812", "PLR2004", "PD011"]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.pylint]
max-args = 8
[tool.ruff.format]
line-ending = "lf"
[tool.mypy]
disable_error_code = "import-untyped"
[tool.pylint.typecheck]
generated-members = ["cv2.*"]
signature-mutators = [
"click.decorators.option",
"click.decorators.argument",
"click.decorators.version_option",
"click.decorators.help_option",
"click.decorators.pass_context",
"click.decorators.confirmation_option"
]
[tool.pylint.format]
max-line-length = 120
[tool.pylint."messages control"]
disable = ["missing-class-docstring", "missing-function-docstring", "wrong-import-order", "missing-module-docstring"]
[tool.pylint.design]
max-args = 8
min-public-methods = 1
max-attributes = 8
max-positional-arguments = 6
[tool.pylint.miscellaneous]
notes = ["FIXME", "XXX"]
[tool.pylint.basic]
no-docstring-rgx = "^__|^test_"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"