Skip to content

Commit

Permalink
Merge pull request #1328 from ltalirz/issue_1327_pip_install_rest
Browse files Browse the repository at this point in the history
make REST extra lowercase
  • Loading branch information
Snehal Kumbhar committed Mar 23, 2018
2 parents 53b9f58 + c764f47 commit a013a11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -40,7 +40,7 @@ install:
# Upgrade pip setuptools and wheel to be able to run the next command
- pip install -U pip wheel setuptools
# Install AiiDA with some optional dependencies
- pip install .[REST,docs,atomic_tools,testing,dev_precommit]
- pip install .[rest,docs,atomic_tools,testing,dev_precommit]

env:
## Build matrix to test both backends, and the docs
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation/quick_install.rst
Expand Up @@ -79,7 +79,7 @@ There are additional optional packages that you may want to install, which are g

* ``atomic_tools``: packages that allow importing and manipulating crystal structure from various formats
* ``ssh_kerberos``: adds support for ssh transport authentication through Kerberos
* ``REST``: allows a REST server to be ran locally to serve AiiDA data
* ``rest``: allows a REST server to be ran locally to serve AiiDA data
* ``docs``: tools to build the documentation
* ``advanced_plotting``: tools for advanced plotting
* ``notebook``: jupyter notebook - to allow it to import AiiDA modules
Expand Down
4 changes: 2 additions & 2 deletions setup_requirements.py
Expand Up @@ -79,7 +79,7 @@
'python-gssapi==0.6.4',
],
# Requirements for RESTful API
'REST': [
'rest': [
'Flask==0.10.1',
'Flask-RESTful==0.3.6',
'Flask-Cors==3.0.1',
Expand Down Expand Up @@ -150,4 +150,4 @@
# the requirements (and there is no easy way on our side to fix a specific
# installation order of dependencies)

extras_require['testing'] += extras_require['REST'] + extras_require['atomic_tools']
extras_require['testing'] += extras_require['rest'] + extras_require['atomic_tools']

0 comments on commit a013a11

Please sign in to comment.