forked from torchbox/wagtail-grapple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
72 lines (65 loc) · 1.75 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
72
[bdist_wheel]
universal = 1
[metadata]
name = wagtail-grapple
author = Nathan Horrigan
author_email = hello@torchbox.com
maintainer = Dan Braghis
maintainer_email = dan.braghis@torchbox.com
description = A Wagtail package that speeds up and simplifies implementing a GraphQL endpoint!
version = attr: grapple.__version__
url = https://github.com/torchbox/wagtail-grapple
project_urls =
Changelog = https://github.com/torchbox/wagtail-grapple/blob/main/CHANGELOG.md
keywords =
wagtail
django
graphene
graphql
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Framework :: Wagtail
Framework :: Wagtail :: 2
Framework :: Wagtail :: 3
Framework :: Wagtail :: 4
Topic :: Scientific/Engineering
long_description = file:README.md
long_description_content_type = text/markdown
license_files =
LICENSE.txt
[options]
python_requires = >= 3.7
setup_requires =
setuptools >= 40.6
pip >= 10
include_package_data = true
packages = find:
install_requires =
Django>=3.2,<4.0
wagtail>=2.15, <5.0
graphene-django>=3.0.0b7
wagtail-headless-preview
[options.extras_require]
channels =
Django>=3.0,<4.0
channels>=3.0, <3.1
channels_redis==3.3.0
graphql-ws==0.4.4
[flake8]
select = C,E,F,W,B,I
ignore = E203,E501,W503
exclude=migrations,dist,build,venv,node_modules,.tox,venv,.venv,.git
max-line-length=88
[isort]
profile=black
skip=migrations,.git,__pycache__,LC_MESSAGES,locale,build,dist,.github,.tox,venv
blocked_extensions=rst,html,js,svg,txt,css,scss,png,snap,tsx,sh
known_first_party=grapple
default_section=THIRDPARTY
[doc8]
ignore=D000,D001