X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=9f9614d75e5f26d0e0340d25a1d3755a373397c0;hb=dda39e88a80024aa4eece173dfdcde4e1e2aba1b;hp=0c4c5aeda8914f3f287f79ea58edc31b80c4d658;hpb=df203f56e0035351f68c7d01f4842330b53b26e1;p=m_librarian.git diff --git a/setup.py b/setup.py index 0c4c5ae..9f9614d 100755 --- a/setup.py +++ b/setup.py @@ -13,6 +13,11 @@ 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'], + } versionpath = join(abspath(dirname(__file__)), 'm_librarian', '__version__.py') m_librarian_version = load_source('m_librarian_version', versionpath)