Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make REST extra lowercase #1328

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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']