-
Notifications
You must be signed in to change notification settings - Fork 89
/
setup.cfg
95 lines (84 loc) · 2.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[metadata]
name = graphql-ws
version = 0.4.4
description = Websocket backend for GraphQL subscriptions
long_description = file: README.rst, CHANGES.rst
author = Syrus Akbary
author_email = me@syrusakbary.com
url = https://github.com/graphql-python/graphql-ws
keywords = graphql, subscriptions, graphene, websockets
license = MIT
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
graphql-core==2.*
[options.packages.find]
include =
graphql_ws
graphql_ws.*
[options.extras_require]
maintainer =
bumpversion>=0.5.3
wheel>=0.33.6
PyYAML>=5.3,<6
dev =
flake8>=3.7,<4
black
tox>=3,<4
Sphinx>=1.8,<2
test =
pytest>=4,<5; python_version<"3"
pytest>5; python_version>="3"
pytest-cov
pytest-asyncio; python_version>="3.4"
graphene>=2.0,<3
gevent
graphene_django
mock; python_version<"3"
django==1.11.*; python_version<"3"
channels==1.*; python_version<"3"
django==3.*; python_version>="3"
channels==3.*; python_version>="3"
aiohttp; python_version>="3.5"
[bdist_wheel]
universal = 1
[bumpversion]
current_version = 0.4.4
commit = True
tag = True
[bump2version:file:setup.cfg]
search = version="{current_version}"
replace = version="{new_version}"
[bump2version:file:graphql_ws/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[flake8]
exclude =
.tox
.git
.eggs
__pycache__
docs
max-line-length = 88
ignore = W503
[coverage:run]
omit =
.tox/*
[coverage:report]
exclude_lines =
pragma: no cover
@abstract