-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.cfg
62 lines (57 loc) · 1.32 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
[metadata]
name = django-reactor
version = 5.3.0b0
description = Brings LiveView from Phoenix framework into Django
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Environment :: Web Environment
Framework :: Django
Framework :: Django
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Internet :: WWW/HTTP
author = Eddy Ernesto del Valle Pino
author_email = [email protected]
license = MIT
url = https://github.com/edelvalle/reactor
[options]
zip_safe = False
packages = find:
include_package_data = True
python_requires = >=3.9
install_requires =
channels>=4,<5
pydantic>=1.8,<2
lru-dict>=1.2.0,<2
[options.extras_require]
dev =
black
djlint
flake8
ipython
whitenoise
channels-redis
django-hmin
django-stubs
django-stubs-ext
pyright
ruff
twine
daphne
[options.packages.find]
exclude =
tests
[flake8]
max-line-length = 80
show-soure = true
ignore =
B011 # 'assert False' is fine.
E203 # black puts spaces before ':'
W503 # line break before binary (and/or) operator