-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
50 lines (47 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyOpenAnnotate"
version = "0.4.1"
description = "Single class automated annotation tool using OpenCV"
readme = "README.md"
authors = [{ name = "Kukil Kashyap Borgohain, LearnOpenCV", email = "kukilp213@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["Annotation",
"Automated Annotation",
"OpenCV Annotate",
"Image Annotation Tool",
"Single Class Annotation",
"Simple Annotation",
"Annotation Python",
"Dataset labelling",
"Object detection",
"Industrial annotation",
"openannotate",
"Annotation software",
"Deep Learning",
"Contour Analysis",
"Thresholding OpenCV",
"Color Segmentation",
"segmentation mask",
"Computer Vision",
"Bounding Box Annotation",
]
dependencies = [
"opencv-python",
"natsort",
]
requires-python = ">=3.5"
[project.urls]
Homepage = "https://github.com/bigvisionai/pyOpenAnnotate"
[project.scripts]
annotate = "annotation.annotate:main"
showlbls = "tools.visualize:main"