-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathMANIFEST.in
More file actions
34 lines (24 loc) · 839 Bytes
/
MANIFEST.in
File metadata and controls
34 lines (24 loc) · 839 Bytes
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
# Include all non-python files in the integreat_cms directory
graft integreat_cms
# Exclude the static source files since we only need the compiled files in integreat_cms/static/dist
prune integreat_cms/static/src
# Exclude media files
prune integreat_cms/media
# Exclude PDF files
prune integreat_cms/pdf
# Exclude file-based cache
prune integreat_cms/cache
# Exclude xliff files
prune integreat_cms/xliff/upload
prune integreat_cms/xliff/download
# Exclude development settings
exclude integreat_cms/core/*_settings.py
# Exclude test data
exclude integreat_cms/cms/fixtures/test_*.json
# Exclude byte code cache files
global-exclude *.py[co]
global-exclude __pycache__
# Exclude existing log file
exclude integreat_cms/integreat-cms.log
# Exclude source of translation file
exclude integreat_cms/locale/*/LC_MESSAGES/django.po