-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
57 lines (46 loc) · 1.61 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "datadreamer"
version = "0.1.5"
description = "A library for dataset generation and knowledge extraction from foundation computer vision models."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
maintainers = [{ name = "Luxonis", email = "[email protected]"}]
keywords = ["computer vision", "AI", "machine learning", "generative models"]
dynamic = ["dependencies", "optional-dependencies"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Image Recognition",
]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { dev = { file = ["requirements-dev.txt"] } }
[project.urls]
Homepage = "https://github.com/luxonis/datadreamer"
[project.scripts]
datadreamer = "datadreamer.pipelines.generate_dataset_from_scratch:main"
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
target-version = "py38"
[tool.ruff.lint]
ignore = ["F403", "B028", "B905", "D1"]
select = ["E4", "E7", "E9", "F", "W", "B", "I", "FA"]
[tool.ruff.pydocstyle]
convention = "google"
[tool.docformatter]
black = true
[tool.mypy]
python_version = "3.8"
ignore_missing_imports = true
[tool.pyright]
typeCheckingMode = "basic"