-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
executable file
·81 lines (72 loc) · 1.82 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[tool.poetry]
name = "django-exiffield"
version = "3.0.0"
description = "django-exiffield extracts exif information by utilizing the exiftool."
authors = [
"Alexander Frenzel <alex@relatedworks.com>",
]
license = "BSD-3-Clause"
readme = "README.md"
documentation = "https://github.com/escaped/django-exiffield/blob/master/README.md"
homepage = "https://github.com/escaped/django-exiffield"
repository = "https://github.com/escaped/django-exiffield"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
include = ["exiffield/py.typed"]
packages = [
{ include = "exiffield" },
]
[tool.poetry.dependencies]
python = ">=3.6.1, <4.0"
choicesenum = ">=0.2.2"
django = ">=2.2"
jsonfield = ">=3.0"
pillow = ">=5.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.3"
isort = "^5.5.2"
mypy = "^0.782"
pre-commit = "^2.7.1"
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
pytest-django = "^3.9.0"
pytest-mock = "^3.3.1"
tox = "^3.20.0"
tox-gh-actions = "^1.3.0"
[tool.black]
line-length = 88
skip-string-normalization = true
target_version = ['py36', 'py37', 'py38']
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-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"