setup.py: Add requires for installation from tarball

This commit is contained in:
Takeshi KOMIYA 2017-05-26 00:13:47 +09:00
parent 13a383e061
commit 180d665b6c

View File

@ -79,6 +79,9 @@ extras_require = {
if sys.platform == 'win32':
requires.append('colorama>=0.3.5')
if sys.version_info < (3, 5):
requires.append('typing')
# Provide a "compile_catalog" command that also creates the translated
# JavaScript files if Babel is available.