Changeset d411dae in OpenWorkouts-current


Ignore:
Timestamp:
Feb 26, 2019, 11:09:00 AM (5 years ago)
Author:
Borja Lopez <borja@…>
Branches:
current, feature/docs, master
Children:
fd6da93
Parents:
8bae554
Message:

(#56) Added lingua and babel as dependencies (needed for i18n)

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • bin/install

    r8bae554 rd411dae  
    7676    . ${env_path}/bin/activate
    7777    echo "Installing OpenWorkouts dependencies"
    78     yes | pip install --upgrade -e ${current}[testing] >> ${install_log}.stdout 2>> ${install_log}.stderr
     78    yes | pip install --upgrade -e ${current}[testing,translations] >> ${install_log}.stdout 2>> ${install_log}.stderr
    7979    deactivate
    8080}
  • setup.py

    r8bae554 rd411dae  
    3939]
    4040
     41translations_require = [
     42    'babel',
     43    'lingua'
     44]
     45
    4146tests_require = [
    4247    'WebTest >= 1.3.1',  # py3 compat
     
    6873    extras_require={
    6974        'testing': tests_require,
     75        'translations': translations_require,
    7076    },
    7177    install_requires=requires,
Note: See TracChangeset for help on using the changeset viewer.