-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.35 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
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "phomo"
version = "1.2.0"
description = "Python package and CLI utility to create photo mosaics."
authors = ["Loic Coyle <loic.coyle@hotmail.fr>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/loiccoyle/phomo"
keywords = ["photomosaic", "photographic", "mosaic", "art", "image"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Artistic Software",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pillow = "^10.0.1"
numpy = "^2.0.0"
tqdm = "^4.60.0"
matplotlib = "^3.4.1"
scipy = "^1.11.2"
numba = { version = "^0.60.0", optional = true }
opencv-python = "^4.10.0.84"
[tool.poetry.extras]
cuda = ["numba"]
[tool.poetry.group.dev.dependencies]
notebook = "^7.0.4"
pytest = "^7.2.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.0"
mkdocs-material = "^9.5.27"
mkdocs-jupyter = "^0.24.7"
mkdocstrings = { extras = ["python"], version = "^0.25.1" }
mkdocs-gen-files = "^0.5.0"
mkdocs-literate-nav = "^0.6.1"
[tool.poetry.scripts]
phomo = 'phomo.__main__:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"