forked from clokep/django-render-block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (47 loc) · 1.55 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
[metadata]
name = django-render-block
version = 0.10
description = Render a particular block from a template to a string.
long_description = file: README.rst, CHANGELOG.rst
long_description_content_type = text/x-rst
author = Patrick Cloke
author_email = clokep@patrick.cloke.us
url = https://github.com/clokep/django-render-block
keywords = [django, template, block, templates, render, context]
license = ISC
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Environment :: Web Environment
Topic :: Internet
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.1
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: ISC License (ISCL)
project_urls =
Documentation = https://github.com/clokep/django-render-block/blob/main/README.rst
Release notes = https://github.com/clokep/django-render-block/blob/main/CHANGELOG.rst
Source = https://github.com/clokep/django-render-block
Tracker = https://github.com/clokep/django-render-block/issues
[options]
packages =
render_block
install_requires = django>=3.2
python_requires = >=3.8
[options.extras_require]
dev =
Jinja2>=2.8
[flake8]
extend-ignore = E203
max-line-length = 88
[isort]
profile = black
default_section = THIRDPARTY