-
Notifications
You must be signed in to change notification settings - Fork 37
/
pyproject.toml
49 lines (44 loc) · 998 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
42
43
44
45
46
47
48
49
[tool.poetry]
name = "libthumbor"
version = "2.0.2"
description = "libthumbor is the python extension to generate thumbor URLs"
authors = ["Bernardo Heynemann <[email protected]>"]
readme = "README.md"
keywords = ["imaging", "face", "detection", "feature", "thumbor", "thumbnail", "imagemagick", "pil", "opencv"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
six = "^1.14.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pytest-tldr = "^0.2.1"
black = "^22.3.0"
flake8 = "^4.0.1"
pylint = "^2.13.4"
preggy = "^1.4.4"
pytest-cov = "^3.0"
django = "^3.0.3"
coverage = "^6.3.2"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"