Metadata-Version: 2.1
Name: crams-contact
Version: 1.0.0
Summary: CRAMS API opensource crams_contact package.
Home-page: https://github.com/CRAMS-Dashboard/crams-api
Author: Monash University e-Research Centre
Author-email: crams@monash.edu
License: GNU General Public License v3.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Framework :: Django :: 3.2
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django (>=3.2)
Requires-Dist: djangorestframework (>=3.12)
Requires-Dist: django-rest-auth (>=0.9.5)
Requires-Dist: django-cors-headers (>=3.7.0)
Requires-Dist: django-extensions (>=3.1.3)
Requires-Dist: django-filter (>=2.4.0)
Requires-Dist: django-model-utils (>=4.1.1)
Requires-Dist: mysqlclient (>=2.0.3)
Requires-Dist: rest-condition (>=1.0.3)
Requires-Dist: gunicorn (>=20.0.4)
Requires-Dist: urllib3 (>=1.26.5)
Requires-Dist: sqlparse (>=0.4.1)
Requires-Dist: pandas (>=1.2.3)
Requires-Dist: PyJWT (>=1.7.1)
Requires-Dist: merc-common


Crams Contact
===============

crams contact is a Django app package for CRAMS api open source. Detailed documentation is in the "docs" directory.
Souce code is available at https://github.com/CRAMS-Dashboard/crams-api


Quick start
-----------

1. Add "crams_contact" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'crams_contact',
    ]

2. Include the crams_contact URLconf in your project urls.py like this::

    path('crams_contact/', include('crams_contact.urls')),

3. Run ``python manage.py migrate`` to create the crams_contact models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
   to test (you'll need the Admin app enabled).

5. Visit http://127.0.0.1:8000 to test it.

