Metadata-Version: 2.1
Name: django-analyses
Version: 0.1.0
Summary: A reusable Django app to manage analyses.
Home-page: https://github.com/TheLabbingProject/django_analyses
Author: Zvi Baratz
Author-email: baratzz@pm.me
License: AGPLv3
Description: [![PyPI version](https://img.shields.io/pypi/v/django-analyses.svg)](https://pypi.python.org/pypi/django-analyses/)
        [![PyPI status](https://img.shields.io/pypi/status/django-analyses.svg)](https://pypi.python.org/pypi/django-analyses/)
        [![TheLabbingProject](https://circleci.com/gh/TheLabbingProject/django_analyses.svg?style=shield)](https://app.circleci.com/pipelines/github/TheLabbingProject/django-analyses)
        [![Documentation Status](https://readthedocs.org/projects/django-analyses/badge/?version=latest)](http://django-analyses.readthedocs.io/?badge=latest)
        [![codecov.io](https://codecov.io/gh/TheLabbingProject/django_analyses/coverage.svg?branch=master)](https://codecov.io/github/TheLabbingProject/django_analyses?branch=master)
        
        # django-analyses
        
        A reusable Django app to manage analyses.
        
        ## Quick start
        
        1. Add "django_analyses" to your INSTALLED_APPS setting:
        
        <pre>
            INSTALLED_APPS = [
                ...
                'django_analyses',
            ]
        </pre>
        
        2. Include the `analyses` URLconf in your prject urls.py:
        
        <pre>
            path("api/", include("django_analyses.urls", namespace="analyses")),
        </pre>
        
        3. Run `python manage.py migrate` to create the analyses models.
        
        4. Start the development server and visit http://127.0.0.1:8000/admin/.
        
        5. Visit http://127.0.0.1:8000/api/analyses/.
        
Keywords: django research analysis pipeline
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
