Metadata-Version: 2.0
Name: django-mathcalc
Version: 0.1
Summary: A simple app Django app to to do some basic calculations
Home-page: https://github.com/notpratheek
Author: Pratheek
Author-email: pratheek.i@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
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.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

========
Mathcalc
========

Mathcalc is a simple app created for the class requirement.
Detailed documentation (if any!) is with in the source files as comments.

(I'd suggested to go through the source, since that would be an easier task than to
figure out manually)

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

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

   INSTALLED_APPS = [
        ...
        'mathcalc',
   ]

2. Include the shopcart urlconf in your project urls.py like this::

   urlpatterns = [
        ...
        url(r'^mathcalc/', include('mathcalc.urls')),
   ]

3. Start the development server and visit http://127.0.0.1:8000/mathcalc/ to view the
   mathcalc app



