Mercurial > wikked
changeset 478:5d5a6832c4ec
cm: Separate install dependencies from virtual environment requirements.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 15 Oct 2018 20:30:52 -0700 |
parents | 71c9259de019 |
children | 0d78638199bf |
files | setup.py |
diffstat | 1 files changed, 17 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Thu Oct 11 23:24:36 2018 -0700 +++ b/setup.py Mon Oct 15 20:30:52 2018 -0700 @@ -8,8 +8,23 @@ return fp.read() -install_requires = read('requirements.txt').splitlines() -tests_require = read('dev-requirements.txt').splitlines() +install_requires = [ + 'Flask>=0.12.2', + 'Flask-Bcrypt>=0.7.1', + 'Flask-Login>=0.2.10', + 'Jinja2>=2.10', + 'Markdown>=3', + 'Pygments>=2.2.0', + 'SQLAlchemy>=1.2.0', + 'Whoosh>=2.7.4', + 'colorama>=0.3.9', + 'python-hglib>=1.8', + 'repoze.lru>=0.6' +] +tests_require = [ + 'invoke>=0.22.0' + 'pytest>=3.3.1' +] setup(