-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.cfg
71 lines (65 loc) · 1.61 KB
/
setup.cfg
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
[metadata]
name = wagtail-storages
version = attr: wagtail_storages.__version__
description = Use AWS S3 with private documents in Wagtail.
long-description = file: README.rst
author = Torchbox
author_email = [email protected]
maintainer = Torchbox
maintainer_email = [email protected]
url = https://github.com/torchbox/wagtail-storages
license = BSD 3-Clause License
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Internet :: WWW/HTTP
Framework :: Django
Framework :: Django :: 4.2
Framework :: Django :: 5.0
Framework :: Django :: 5.1
Framework :: Wagtail
Framework :: Wagtail :: 5
Framework :: Wagtail :: 6
keywords =
wagtail
s3
django
storages
storage
[options]
packages = find:
install_requires =
Django >=4.2
Wagtail >=5.2
django-storages[boto3] <2
python_requires = >=3.10
[options.packages.find]
exclude =
wagtail_storages.tests*
[options.extras_require]
testing =
coverage ==7.5.2
factory_boy ==3.3.0
moto[s3] >=5,<6
black ==24.4.2
isort
flake8
[bdist_wheel]
python-tag = py3
[flake8]
max-line-length = 88
[isort]
line_length=88
use_parentheses=True
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
known_django = django
known_wagtail = wagtail
known_third_party = factory,storages,boto3,moto
known_first_party = wagtail_storages
sections = FUTURE,STDLIB,DJANGO,WAGTAIL,THIRDPARTY,FIRSTPARTY,LOCALFOLDER