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 <heynemann@gmail.com>"]
readme = "README.md"
keywords = ["imaging", "face", "detection", "feature", "thumbor", "thumbnail", "imagemagick", "pil", "opencv"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
six = "^1.14.0"
[tool.poetry.dev-dependencies]
pytest = "^5.3.5"
pytest-tldr = "^0.2.1"
pytest-xdist = "^1.31.0"
black = "^19.10b0"
flake8 = "^3.7.9"
pylint = "^2.4.4"
preggy = "^1.4.4"
pytest-cov = "^2.8.1"
django = "^3.0.3"
[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"
|