This repository was archived by the owner on Dec 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
Django Ajax CBV
2
2
=================
3
3
4
- |Build Status | |Codacy Badge | |Coverage Status | |BCH compliance |
4
+ |Pypi | | Build Status | |Codacy Badge | |Coverage Status | |BCH compliance |
5
5
6
6
Django module to easily use generic Class Based views with ajax.
7
7
8
8
Table of contents:
9
9
* `How to install `_;
10
10
* `License `_.
11
11
12
+ Compatibility
13
+ -------------
14
+ Django
15
+ * 1.10
16
+ * 1.11
17
+ * latest
18
+
12
19
How to install
13
20
--------------
14
21
@@ -38,6 +45,8 @@ projects and commercial products.
38
45
.. _How to install : #how-to-install
39
46
.. _License : #license
40
47
48
+ .. |Pypi | image :: https://img.shields.io/pypi/v/django-ajax-cbv.svg?style=flat-square
49
+ :target: https://pypi.python.org/pypi/django-ajax-cbv
41
50
.. |Build Status | image :: https://travis-ci.org/dipcode-software/django-ajax-cbv.svg?branch=master
42
51
:target: https://travis-ci.org/dipcode-software/django-ajax-cbv
43
52
.. |Codacy Badge | image :: https://api.codacy.com/project/badge/Grade/a64f03c2bd344561bc21e05c23aa04fb
Original file line number Diff line number Diff line change @@ -83,12 +83,16 @@ class DevelopmentPublishCommand(PublishCommand):
83
83
classifiers = [
84
84
'Environment :: Web Environment' ,
85
85
'Framework :: Django' ,
86
+ 'Framework :: Django :: 1.10' ,
86
87
'Framework :: Django :: 1.11' ,
87
88
'Intended Audience :: Developers' ,
88
89
'License :: OSI Approved :: MIT License' ,
89
90
'Operating System :: OS Independent' ,
90
91
'Programming Language :: Python' ,
91
92
'Programming Language :: Python :: 2.7' ,
93
+ 'Programming Language :: Python :: 3.4' ,
94
+ 'Programming Language :: Python :: 3.5' ,
95
+ 'Programming Language :: Python :: 3.6' ,
92
96
],
93
97
cmdclass = {
94
98
'publish_dev' : DevelopmentPublishCommand ,
You can’t perform that action at this time.
0 commit comments