-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.15 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
[tool.poetry]
name = "cv-aid"
version = "1.0.1"
description = "CV Aid is a set of helpers for computer vision tasks."
authors = ["Khalid Mohamed Elborai <accnew820@gmail.com>"]
license = "GNU Version 3"
packages = [
{ include = "cv_aid" },
{ include = "tests", format = "sdist" },
{ include = "tests", format = "wheel" },
{ include = "scripts.py", format = "sdist" },
{ include = "scripts.py", format = "wheel" },
]
readme = "README.md"
repository = "https://github.com/khalidelboray/cv-aid"
homepage = "https://khalidelboray.me/cv-aid"
keywords = ["computer vision", "cv", "image", "processing", "helpers","open-cv","dlib","face detection"]
[tool.poetry.dependencies]
python = "^3.8"
deepstack-sdk = "^0.2.1"
filetype = "^1.0.9"
numpy = "^1.21"
opencv-python = "^4.1.0"
tqdm = "^4.62.3"
requests = "^2.27.1"
cmake = "^3.22.1"
dlib = "^19.22.1"
[tool.poetry.dev-dependencies]
black = {version = "^22.1.0", allow-prereleases = true}
lazydocs = {git = "https://github.com/khalidelboray/lazydocs.git", rev = "main"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
test = 'scripts:test'