Metadata-Version: 1.2
Name: django-bcmr
Version: 0.0.3
Summary: A Django app for storing, accessing and managing CashToken Bitcoin Cash Metadata Registries
Home-page: https://www.paytaca.com
Author: Paytaca
Author-email: info@paytaca.com
License: BSD-3-Clause
Description: =====
        BCMR
        =====
        
        BCMR or Bitcoin Cash Metadata Registry is a Django app for storing, accessing and managing CashToken BCMRs.
        
        Quick start
        -----------
        
        1. Add "bcmr" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'bcmr',
            ]
        
        2. Include the bcmr URLconf in your project urls.py like this::
        
            path('bcmr/', include('bcmr.urls')),
        
        3. Run ``python manage.py migrate`` to create the bcmr models.
        
        4. Start the development server and visit http://localhost:8000/admin/
           to access the DB (you'll need the Admin app enabled).
        
        5. Visit http://localhost:8000/bcmr/ to check API endpoints for BCMRs and tokens.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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: Topic :: Database :: Database Engines/Servers
Requires-Python: >=3.6
