{{cookiecutter.project_slug}}/setup.py
changeset 27 610088bc5214
parent 23 befcc8f2519b
child 45 bad5178f7035
equal deleted inserted replaced
26:f5de6b8a05b6 27:610088bc5214
    11 requires = [
    11 requires = [
    12     'authomatic',
    12     'authomatic',
    13 {%- if cookiecutter.beaker_backend == 'redis' %}
    13 {%- if cookiecutter.beaker_backend == 'redis' %}
    14     'beakeredis',
    14     'beakeredis',
    15 {%- endif %}
    15 {%- endif %}
    16 {%- if cookiecutter.use_oracle %}
    16 {%- if cookiecutter.use_oracle.lower() in ('true','on','yes','1') %}
    17     'cx_Oracle',
    17     'cx_Oracle',
    18 {%- endif %}
    18 {%- endif %}
    19     'fanstatic',
    19     'fanstatic',
    20 {%- if cookiecutter.db_type == 'newt' %}
    20 {%- if cookiecutter.db_type == 'newt' %}
    21     'newt.db',
    21     'newt.db',
    22 {%- endif %}
    22 {%- endif %}
    23     'nose',
    23     'nose',
    24 {%- if cookiecutter.use_postgresql %}
    24 {%- if cookiecutter.use_postgresql.lower() in ('true','on','yes','1') %}
    25     'psycopg2',
    25     'psycopg2',
    26 {%- endif %}
    26 {%- endif %}
    27     'pyams_alchemy',
    27     'pyams_alchemy',
    28     'pyams_catalog',
    28     'pyams_catalog',
    29     'pyams_content',
    29     'pyams_content',
    30 {%- if cookiecutter.use_elasticsearch %}
    30 {%- if cookiecutter.use_elasticsearch.lower() in ('true','on','yes','1') %}
    31     'pyams_content_es',
    31     'pyams_content_es',
    32 {%- endif %}
    32 {%- endif %}
    33     'pyams_default_theme',
    33     'pyams_default_theme',
    34     'pyams_file',
    34     'pyams_file',
    35     'pyams_form',
    35     'pyams_form',
    36 {%- if cookiecutter.need_pyams_gis %}
    36 {%- if cookiecutter.need_pyams_gis.lower() in ('true','on','yes','1') %}
    37     'pyams_gis',
    37     'pyams_gis',
    38 {%- endif %}
    38 {%- endif %}
    39     'pyams_i18n',
    39     'pyams_i18n',
    40 {%- if cookiecutter.use_ldap %}
    40 {%- if cookiecutter.use_ldap.lower() in ('true','on','yes','1') %}
    41     'pyams_ldap',
    41     'pyams_ldap',
    42 {%- endif %}
    42 {%- endif %}
    43     'pyams_notify',
    43     'pyams_notify',
    44     'pyams_pagelet',
    44     'pyams_pagelet',
    45     'pyams_portal',
    45     'pyams_portal',
    60 {%- endif %}
    60 {%- endif %}
    61     'pyramid',
    61     'pyramid',
    62     'pyramid_beaker',
    62     'pyramid_beaker',
    63     'pyramid_chameleon',
    63     'pyramid_chameleon',
    64     'pyramid_debugtoolbar',
    64     'pyramid_debugtoolbar',
    65 {%- if cookiecutter.use_elasticsearch %}
    65 {%- if cookiecutter.use_elasticsearch.lower() in ('true','on','yes','1') %}
    66     'pyramid_es',
    66     'pyramid_es',
    67 {%- endif %}
    67 {%- endif %}
    68     'pyramid_fanstatic',
    68     'pyramid_fanstatic',
    69     'pyramid_ipython',
    69     'pyramid_ipython',
    70     'pyramid_retry',
    70     'pyramid_retry',