File tree 1 file changed +9
-2
lines changed
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11
11
if 'sdist' in sys .argv or 'develop' in sys .argv :
12
12
try :
13
13
os .chdir ('fluent_faq' )
14
+
15
+ from django .core .management .commands .compilemessages import Command
16
+ command = Command ()
17
+ command .execute (stdout = sys .stderr , verbosity = 1 )
18
+ except ImportError :
19
+ # < Django 1.7
14
20
from django .core .management .commands .compilemessages import compile_messages
15
21
compile_messages (sys .stderr )
16
22
finally :
@@ -38,14 +44,15 @@ def find_version(*parts):
38
44
install_requires = [
39
45
'django-fluent-contents>=1.0b1' ,
40
46
'django-fluent-utils>=1.0' , # DRY utility code
41
- 'django-parler>=1.0b2 ' ,
47
+ 'django-parler>=1.0 ' ,
42
48
'django-tag-parser>=1.1' ,
43
49
],
44
50
requires = [
45
51
'Django (>=1.5)' ,
46
52
],
47
53
extras_require = {
48
- 'faqpage' : ['django-fluent-pages' ],
54
+ 'faqpage' : ['django-fluent-pages>=0.9b4' ],
55
+ 'taggit' : ['taggit' , 'taggit-autosuggest' ],
49
56
},
50
57
description = 'A FAQ engine for Django Fluent CMS' ,
51
58
long_description = read ('README.rst' ),
You can’t perform that action at this time.
0 commit comments