-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 980 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
37
38
39
40
41
[tool.poetry]
name = "echo1-image-slicer"
version = "0.1.8"
description = ""
authors = ["Michael Mohamed <michael.mohamed@echo1.io>"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/e1-io/echo1-image-slicer"
repository = "https://github.com/e1-io/echo1-image-slicerr"
include = [
"LICENSE",
]
[tool.poetry.scripts]
image-slicer = 'echo1_image_slicer.echo1_image_slicer:app'
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
loguru = "^0.6.0"
numpy = "^1.22.2"
Pillow = "^9.0.1"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
pytest = ">=5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/foo.py # exclude a file named foo.py in the root of the project (in addition to the defaults)
'''