Include mo files in pip installations
This commit is contained in:
parent
840f6d04b6
commit
8b92b7fb8d
@ -5,3 +5,4 @@ include youtube-dl.bash-completion
|
|||||||
include youtube-dl.fish
|
include youtube-dl.fish
|
||||||
include youtube-dl.1
|
include youtube-dl.1
|
||||||
recursive-include docs Makefile conf.py *.rst
|
recursive-include docs Makefile conf.py *.rst
|
||||||
|
include share/locale/*/LC_MESSAGES/youtube_dl.mo
|
||||||
|
4
setup.py
4
setup.py
@ -6,6 +6,7 @@ from __future__ import print_function
|
|||||||
import os.path
|
import os.path
|
||||||
import warnings
|
import warnings
|
||||||
import sys
|
import sys
|
||||||
|
import glob
|
||||||
import io
|
import io
|
||||||
import zipfile
|
import zipfile
|
||||||
|
|
||||||
@ -64,6 +65,9 @@ else:
|
|||||||
('share/doc/youtube_dl', ['README.txt']),
|
('share/doc/youtube_dl', ['README.txt']),
|
||||||
('share/man/man1', ['youtube-dl.1'])
|
('share/man/man1', ['youtube-dl.1'])
|
||||||
]
|
]
|
||||||
|
for mo_file in glob.glob('share/locale/*/LC_MESSAGES/youtube_dl.mo'):
|
||||||
|
files_spec.append((os.path.dirname(mo_file), [mo_file]))
|
||||||
|
|
||||||
root = os.path.dirname(os.path.abspath(__file__))
|
root = os.path.dirname(os.path.abspath(__file__))
|
||||||
data_files = []
|
data_files = []
|
||||||
for dirname, files in files_spec:
|
for dirname, files in files_spec:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user