Metadata-Version: 2.1
Name: django-laboratory
Version: 0.0.1
Summary: A Django application for managing collections of scientific instruments
Home-page: https://github.com/SSJenny90/django-laboratory
License: MIT
Keywords: django,laboratory,science,scientific instrument,research management
Author: Sam Jennings
Author-email: samuel.scott.jennings@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: django (>=3.2)
Requires-Dist: django-model-utils (>=4.3.1,<5.0.0)
Description-Content-Type: text/markdown

# Django Laboratory 

[![Github Build](https://github.com/SSJenny90/django-laboratory/actions/workflows/build.yml/badge.svg)](https://github.com/SSJenny90/django-laboratory/actions/workflows/build.yml)
[![Github Docs](https://github.com/SSJenny90/django-laboratory/actions/workflows/docs.yml/badge.svg)](https://github.com/SSJenny90/django-laboratory/actions/workflows/docs.yml)
[![CodeCov](https://codecov.io/gh/SSJenny90/django-laboratory/branch/main/graph/badge.svg?token=0Q18CLIKZE)](https://codecov.io/gh/SSJenny90/django-laboratory)
![GitHub](https://img.shields.io/github/license/SSJenny90/django-laboratory)
![GitHub last commit](https://img.shields.io/github/last-commit/SSJenny90/django-laboratory)
![PyPI](https://img.shields.io/pypi/v/django-laboratory)
<!-- [![RTD](https://readthedocs.org/projects/django-laboratory/badge/?version=latest)](https://django-laboratory.readthedocs.io/en/latest/readme.html) -->
<!-- [![Documentation](https://github.com/SSJenny90/django-laboratory/actions/workflows/build-docs.yml/badge.svg)](https://github.com/SSJenny90/django-laboratory/actions/workflows/build-docs.yml) -->
<!-- [![PR](https://img.shields.io/github/issues-pr/SSJenny90/django-laboratory)](https://github.com/SSJenny90/django-laboratory/pulls)
[![Issues](https://img.shields.io/github/issues-raw/SSJenny90/django-laboratory)](https://github.com/SSJenny90/django-laboratory/pulls) -->
<!-- ![PyPI - Downloads](https://img.shields.io/pypi/dm/django-laboratory) -->
<!-- ![PyPI - Status](https://img.shields.io/pypi/status/django-laboratory) -->

A Django application for managing collections of scientific instruments

Documentation
-------------

The full documentation is at https://ssjenny90.github.io/django-laboratory/

Quickstart
----------

Install Django Laboratory::

    pip install django-laboratory

Add it to your `INSTALLED_APPS`:


    INSTALLED_APPS = (
        ...
        'laboratory',
        ...
    )

Add Django Laboratory's URL patterns:

    urlpatterns = [
        ...
        path('', include("laboratory.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
-------


