# Installer requirements
# ----------------------
#
# The list of installer requirements is hardcoded in pyperformance/venv.py
#
# Note: installer requirements are also used in .travis.yml

# html5lib requires setuptools 18.5 or newer
setuptools>=18.5
# pip 6 is the first version supporting environment markers
pip>=6.0
# install wheel so pip can cache binary wheel packages locally,
# and install prebuilt wheel packages from PyPI
wheel


# Indirect dependencies
# ---------------------
#
# Freeze indirect dependencies to get a more reproductible test environment

# tornado 4.4.1 dependencies
backports-abc==0.5
singledispatch==3.4.0.3
certifi==2019.6.16

# spambayes 1.1b2 dependencies
lockfile==0.12.2; python_version < '3.0'
pydns==2.3.6; python_version < '3.0'

# Mako 1.0.4 dependencies
MarkupSafe==1.1.1

# html5lib 0.999999999 dependencies
webencodings==0.5.1

# sympy 1.0 dependency
mpmath==1.1.0

# pyperf dependencies (docutils is needed by statistics)
statistics==1.0.3.5; python_version < '3.4'
docutils==0.15.1.post1


# pyperformance dependencies
# --------------------------

six==1.12.0
pyperf==1.6.1


# Benchmarks dependencies
# -----------------------
#
# When one of these dependencies is upgraded, the pyperformance major version
# should be increased to respect semantic versionning. Comparison between
# two pyperformance results of two different major versions is not reliable.

Chameleon==3.6.2                          # bm_chameleon
# Django is currently stuck at Django 1.11 to support Python 2.7 and Python 3:
# https://mail.python.org/pipermail/speed/2018-January/000619.html
Django==1.11.22                           # bm_django_template
Genshi==0.7.3                             # bm_genshi
Mako==1.0.14                              # bm_mako
SQLAlchemy==1.3.6                         # bm_sqlalchemy_declarative
dulwich==0.19.11                          # dulwich_log
mercurial==5.0.2                          # bm_hg_startup
html5lib==1.0.1                           # bm_html5lib
pathlib2==2.3.4; python_version < '3.4'   # bm_pathlib
pyaes==1.6.1                              # bm_crypto_pyaes
spambayes==1.1b2; python_version < '3.0'  # bm_spambayes
sympy==1.4                                # bm_sympy
# Tornado 6.0 dropped Python 2.7 compatibility
tornado==5.1.1                            # bm_tornado_http


# Optional dependencies
# ---------------------
#
# The list of optional dependencies is hardcoded in pyperformance/venv.py

psutil==5.6.3


# pyperformance
# -------------
#
# The pyperformance module is installed inside the virtual environment
# by pyperformance/venv.py
