-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 885 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 = "pyxlimg"
version = "0.1.6"
description = "Image Extractor for XLSX files"
authors = ["ShortArrow <[email protected]>"]
maintainers = ["ShortArrow <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/shortarrow/pyxlimg"
homepage = "https://shortarrow.jp"
documentation = "https://pyxlimg.readthedocs.io/en/latest/pyxlimg.html"
keywords = ["xlsx", "image", "PIL", "Pillow", "Excel"]
[tool.poetry.dependencies]
python = "^3.8"
Pillow = "^10.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0"
black = "^23.0"
pytest-watch = "^4.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
myst-parser = ">=0.16"
sphinx = ">=7.0"
sphinx-autobuild = ">=2021.0"
sphinx-rtd-theme = ">=2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"