From: Oleg Broytman Date: Thu, 22 Mar 2018 19:28:34 +0000 (+0300) Subject: Build(setup.py): Add `install_requires` X-Git-Tag: 0.0.16~1 X-Git-Url: https://git.phdru.name/?p=m_librarian.git;a=commitdiff_plain;h=dda39e88a80024aa4eece173dfdcde4e1e2aba1b Build(setup.py): Add `install_requires` --- diff --git a/setup.py b/setup.py index 1d8ebdb..9f9614d 100755 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ except ImportError: kw = {} if is_setuptools: kw['python_requires'] = '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' + kw['install_requires'] = ['m_lib.defenc>=1.0'] kw['extras_require'] = { 'm_lib': ['m_lib>=3.1'], 'pbar': ['m_lib>=3.1'],