/earth-science

A collection of Django tools for Earth Science developers

Primary LanguageHTMLMIT LicenseMIT

Geoluminate Earth Science

Github Build Github Docs CodeCov GitHub GitHub last commit PyPI

A Django application for managing collections of scientific instruments

Documentation

The full documentation is at https://ssjenny90.github.io/geoluminate-earth-science/

Quickstart

Install Geoluminate Earth Science::

pip install geoluminate-earth-science

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'geoscience',
    ...
)

Add Geoluminate Earth Science's URL patterns:

urlpatterns = [
    ...
    path('', include("geoscience.urls")),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Development commands

pip install -r requirements_dev.txt
invoke -l

Credits