Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Commit

Permalink
installation: capitalisation of pre-requisites
Browse files Browse the repository at this point in the history
* Amends capitalisation of Pythonic pre-requisites, e.g. `Flask` instead
  of `flask`, in order to make `python setup.py install` working.
  Consequently, this makes the autodoc documentation building at RTFD
  working in their virtual environments.  (closes #36)

Signed-off-by: Tibor Simko <tibor.simko@cern.ch>
  • Loading branch information
tiborsimko committed Aug 31, 2015
1 parent 3e703c3 commit 89a5fe3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ FROM python:3.4

# Install some prerequisites ahead of `setup.py` in order to profit
# from the docker build cache:
RUN pip install flask \
flask-restful \
flask-sqlalchemy \
RUN pip install Flask \
Flask-RESTful \
Flask-SQLAlchemy \
isodate \
jsonschema \
psycopg2 \
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ def run_tests(self):
zip_safe=False,
platforms='any',
install_requires=[
'flask',
'flask-restful',
'flask-sqlalchemy',
'Flask',
'Flask-RESTful',
'Flask-SQLAlchemy',
'isodate',
'jsonschema',
'psycopg2',
Expand Down

0 comments on commit 89a5fe3

Please sign in to comment.