Fix readthedocs build by removing duplicate entry

The pip 2020 dependency resolver considers two dependencies from the
same VCS url to be two incompatible dependencies.
1 file changed
tree: 6c41b90f49b214823b6728a8f0da10641b2b1e38
  1. airavata_django_portal_sdk/
  2. docs/
  3. tests/
  4. .gitignore
  5. mkdocs.yml
  6. README.md
  7. requirements-dev.txt
  8. requirements.txt
  9. runtests.py
  10. setup.py
README.md

Airavata Django Portal SDK

The Airavata Django Portal SDK provides libraries that assist in developing custom Django app extensions to the Airavata Django Portal.

See the documentation at https://airavata-django-portal-sdk.readthedocs.io/ for more details.

Getting Started

To integrate the SDK with an Airavata Django Portal custom app, add

"airavata-django-portal-sdk @ git+https://github.com/apache/airavata-django-portal-sdk.git@master#egg=airavata-django-portal-sdk",

to the install_requires list in your setup.py file. Then with your virtual environment activated, reinstall your Django app with

pip install -e .

Migrations

django-admin makemigrations --settings=tests.test_settings airavata_django_portal_sdk

Documentation

To generate the documentation, create a virtual environment and then:

pip install -r requirements-dev.txt
mkdocs serve