-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 815 Bytes
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
[tool.poetry]
name = "impipes"
version = "0.1.8"
description = ""
authors = [
"Rodolfo Ferro <rodolfoferroperez@gmail.com>",
"Lukasz Kaczmarek <lukaszk76@gmail.com>",
"Cristian Vargas <rodolfoferroperez@gmail.com>",
"Ramón Ontiveros <ramontiveros@gmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://impipes.rtfd.io"
repository = "https://github.com/RodolfoFerro/impipes"
keywords = [
"Image enhancement",
"Image pipelines",
"Image processing"
]
classifiers = [
"Operating System :: OS Independent"
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
opencv-python = "^4.1"
scipy = "^1.3"
wget = "^3.2"
matplotlib = "^3.1"
numpy = "^1.17"
[tool.poetry.dev-dependencies]
pytest = "^3.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"