Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsca committed Mar 29, 2014
1 parent d3d8fbf commit cf730c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions requirements.txt
Expand Up @@ -4,12 +4,12 @@
#
# pip install -r requirements.txt

Baker>=1.3
#pypy: hg+ssh://hg@bitbucket.org/lucuma/cherrypy/#egg=cherrypy
CherryPy>=3.2.4
Baker>=1.3
Flask>=0.10.1
Jinja2>=2.7.1
Pygments>=1.6
Voodoo>=1.3.1
Werkzeug>=0.9.3
Markdown>=2.3.1
DynPool>=1.0.2.
Markdown>=2.3.1
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -27,7 +27,8 @@ def get_description():
def get_requirements(filename='requirements.txt'):
data = read_from(get_path(filename))
lines = map(lambda s: s.strip(), data.splitlines())
return [l for l in lines if l and not l.startswith('#')]
requirements = [l for l in lines if l and not l.startswith('#')]
return requirements


setup(
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -4,7 +4,7 @@ envlist = py27, pypy
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/solution
commands = py.test tests
commands = pip install -U hg+ssh://hg@bitbucket.org/lucuma/cherrypy/#egg=cherrypy && py.test tests
deps =
pytest
-r{toxinidir}/requirements.txt

0 comments on commit cf730c7

Please sign in to comment.