Metadata-Version: 1.0
Name: django-abstract-utils
Version: 0.0.1
Summary: UNKNOWN
Home-page: https://github.com/IlyaSemenov/django-abstract-utils
Author: Ilya Semenov
Author-email: ilya@semenov.co
License: BSD
Description: django-abstract-utils
        =====================
        
        Currently, this library provides only one method that operates on Django abstract model class:
        
        * ``without`` (or ``AbstractClassWithoutFieldsNamed``) - create a subclass of an abstract Django model class with certain fields **removed**
        
        
        Installation
        ============
        
        ::
        
        	pip install django_abstract_utils
        
        
        Usage
        =====
        
        .. code:: python
        
        	from django_abstract_utils import without
        	from oscar.apps.address.abstract_models import AbstractBillingAddress
        
        	class BillingAddress(without(AbstractBillingAddress, 'phone_number')):
        		pass
        
Platform: UNKNOWN
