-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 915 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
[tool.poetry]
name = "quevedo"
description = "Tool for managing datasets of images with compositional semantics"
version = "1.3.1"
authors = ["Antonio F. G. Sevilla <afgs@ucm.es>"]
license = "OSL-3.0"
readme = "README.md"
repository = "https://github.com/agarsev/quevedo"
documentation = "https://agarsev.github.io/quevedo"
keywords = ["machine learning", "computer vision", "sign language", "corpus linguistics", "dataset"]
[tool.poetry.dependencies]
python = "^3.7"
click = "^8"
pillow = "^8"
flask = { version = "^1.1.2", optional = true }
forcelayout = { version = "^1.0.6", optional = true }
toml = "^0.10.2"
[tool.poetry.extras]
web = [ "flask" ]
force_layout = [ "forcelayout" ]
[tool.poetry.scripts]
quevedo = "quevedo.cli:cli"
[tool.poetry.dev-dependencies]
mkdocs = "^1.1.2"
mkapi = "^1.0.14"
mike = "^1.0.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"