Metadata-Version: 2.1
Name: django-spcc
Version: 0.2.0
Summary: django-spcc collect some userful python Class And Function for Django
Home-page: https://github.com/spunkmars/django-spcc
Author: SpunkMars++
Author-email: spunkmars@gmail.com
License: BSD
Keywords: django-spcc setuptools development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: spmo (>=2.0.9)
Requires-Dist: django (>=2.2.11)

===========
django-spcc
===========
 django-spcc 是一个Django APP，提供了实用的model，view，forms，templates等公共库。

 Only support Django 2.2.x, Python 3.6

Quick start
-----------
1. Add "spcc" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'spcc',
    ]

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

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

3. Run 'python manage.py migrate' to create the spcc models.


