-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
51 lines (48 loc) · 1.49 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-adv-cache-tag
version = 1.1.3
author = Stephane "Twidi" Angel
author_email = [email protected]
url = https://github.com/twidi/django-adv-cache-tag
description = An advanced template tag for caching in django: versioning, compress, partial caching, easy inheritance
long_description = file: README.rst
license = MIT
license_file = LICENSE
keywords = django, cache, templatetag, template
platform = any
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Framework :: Django
Framework :: Django :: 1.7
Framework :: Django :: 1.8
Framework :: Django :: 1.9
Framework :: Django :: 1.10
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Framework :: Django :: 2.2
Framework :: Django :: 3.0
[options]
zip_safe = True
packages = find:
python_requires = >=3.4
[options.packages.find]
include =
adv_cache_tag
adv_cache_tag.*
[options.extras_require]
dev =
django