manifest exclude whoosh_index

This commit is contained in:
nitely 2016-11-13 18:43:02 -03:00
parent 4b38383c5a
commit c59d505d9a
2 changed files with 5 additions and 4 deletions

View File

@ -1,13 +1,14 @@
recursive-include spirit *
include MANIFEST.in
include LICENSE
include README.md
include HISTORY.md
include requirements.txt
recursive-exclude example *
graft spirit
prune example
prune spirit/search/whoosh_index
global-exclude __pycache__
global-exclude *.py[co]
global-exclude .git*

View File

@ -172,6 +172,6 @@ INSTALLED_APPS += [
HAYSTACK_CONNECTIONS = {
'default': {
'ENGINE': 'haystack.backends.whoosh_backend.WhooshEngine',
'PATH': os.path.join(os.path.dirname(__file__), 'search/whoosh_index'),
'PATH': os.path.join(os.path.dirname(__file__), 'search', 'whoosh_index'),
},
}