Metadata-Version: 2.1
Name: django-sympycharfield
Version: 0.3
Summary: Django Char Field using Sympy.
Home-page: https://github.com/memoriadecalculo/django-sympycharfield
Author: Memória de Cálculo
Author-email: memoriadcalculo@gmail.com
License: MIT
Description: # django-sympycharfield
        Django Char Field using Sympy
        
        ## Description
        SympyCharField is a simple Django app to use Sympy through a CharField.
        
        Detailed documentation is in the "docs" directory.
        
        ## Install
        Run the command in the terminal::
        
            pip install django-sympycharfield
        
        ## Quick start
        1. Import in your models.py::
        
            from sympycharfield.fields import SympyCharField
        
        2. Use it as CharField.
        
        ## Test
        1. If you would like to check if SympyCharField is working fine, add
        "SympyCharField" to your INSTALLED_APPS setting like this::
        
            INSTALLED_APPS = [
                ...
                'sympycharfield.demo',
            ]
        
        2. Include the SympyCharField URLconf in your project urls.py like this::
        
            path('sympycharfield/', include('sympycharfield.demo.urls')),
        
        3. Run `python manage.py makemigrations demo` to create the sympycharfield models.
        
        4. Run `python manage.py migrate` to create the sympycharfield models.
        
        5. Start the development server and visit http://127.0.0.1:8000/admin/
           to create a sympycharfield (you'll need the Admin app enabled).
        
        6. Visit http://127.0.0.1:8000/sympycharfield/ to check.
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
