-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (46 loc) · 1.6 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
[project]
name = "modelconv"
description = "Converter for neural models into various formats."
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = "Luxonis", email = "[email protected]" }]
maintainers = [{ name = "Luxonis", email = "[email protected]" }]
keywords = ["ml", "onnx", "openvino", "nn", "ai", "embedded"]
dynamic = ["dependencies", "optional-dependencies", "version"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[project.scripts]
modelconverter = "modelconverter.__main__:app"
[project.urls]
repository = "https://github.com/luxonis/modelconverter"
issues = "https://github.com/luxonis/modelconverter/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = {attr = "modelconverter.__version__"}
[tool.setuptools.dynamic.optional-dependencies]
bench = { file = ["requirements-bench.txt"] }
dev = { file = ["requirements-dev.txt", "requirements-bench.txt"] }
[tool.ruff]
target-version = "py38"
line-length = 79
indent-width = 4
[tool.ruff.lint]
ignore = ["F403", "B028", "B905", "D1", "W191"]
select = ["E4", "E7", "E9", "F", "W", "B", "I"]
[tool.ruff.pydocstyle]
convention = "google"
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
[tool.pyright]
typeCheckingMode = "basic"