-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 903 Bytes
/
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
[tool.poetry]
name = "cvpack-alkasm"
packages = [
{ include = "cvpack" },
]
version = "1.1.0"
description = "Utilities for OpenCV in Python"
authors = ["Alexander Reynolds <[email protected]>"]
homepage = "https://github.com/alkasm/cvpack"
repository = "https://github.com/alkasm/cvpack"
keywords = ["cvpack", "computer vision", "cv", "opencv"]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
include = ["py.typed"]
[tool.poetry.dependencies]
python = "^3.6"
opencv-python = "!=4.2.0.32"
IPython = {version = "~=7.16", optional = true}
numpy = "^1.19.5"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
black = "^19.10b0"
hypothesis = "^5.8.0"
IPython = "~=7.16"
mypy = "^0.790"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"