Metadata-Version: 2.1
Name: django-shopit
Version: 0.5.2
Summary: Fully featured shop application built on djangoSHOP framework.
Home-page: https://github.com/dinoperovic/django-shopit
Author: Dino Perovic
Author-email: dino.perovic@gmail.com
License: BSD License
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Description-Content-Type: text/markdown
Requires-Dist: django-shop (==0.12.3)
Requires-Dist: django-cms (==3.5.3)
Requires-Dist: django-parler (>=1.6.5)
Requires-Dist: django-mptt (>=0.8.6)
Requires-Dist: django-admin-sortable2 (>=0.6.4)
Requires-Dist: measurement (==1.8.0)
Requires-Dist: django-measurement (>=2.4.0)
Requires-Dist: djangocms-cascade (==0.17.10)
Requires-Dist: djangorestframework (==3.8.2)

# Shopit

[![Travis branch](https://img.shields.io/travis/dinoperovic/django-shopit/master.svg?style=flat-square)](https://travis-ci.org/dinoperovic/django-shopit)
[![Codecov](https://img.shields.io/codecov/c/github/dinoperovic/django-shopit.svg?style=flat-square)](http://codecov.io/github/dinoperovic/django-shopit)
[![PyPI](https://img.shields.io/pypi/v/django-shopit.svg?style=flat-square)](https://pypi.org/project/django-shopit/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-shopit.svg?style=flat-square)](https://pypi.org/project/django-shopit/)
[![PyPI - Django Version](https://img.shields.io/pypi/djversions/django-shopit.svg?style=flat-square)](https://pypi.org/project/django-shopit/)
[![PyPI - License](https://img.shields.io/pypi/l/django-shopit.svg?style=flat-square)](https://pypi.org/project/django-shopit/)


**A fully featured shop application built on [djangoSHOP](http://www.django-shop.org) framework.**

This project aims to provide a **quick & easy** way to set up a fully featured shop without much hassle.

---

## Features

Shopit comes with the most useful features that a classic shops needs, out of the box.

Here's what you can expect:

* Easily manage **Products** and their variations with custom **Attributes**.
* **Attach** images, videos & files on products.
* Set *Up-sell*, *Cross-sell* and other customized **Relations** between products.
* Create custom checkbox **Flags** for products and categorization.
* Group products in **Category**, **Brand** and **Manufacturer** groups.
* Create discounts and promotional codes with **Modifiers**.
* Add custom **Taxes** for categories and products.
* Enable customer **Reviews** on products.

## Requirements

* [Django] 1.11
* [django-shop] as shop framework.
* [django-cms] for placeholders.
* [django-parler] to translate everything.
* [django-mptt] for tree management.
* [django-admin-sortable2] to sort stuff.
* [django-measurement] to add measurements.

## Installation

Install using *pip*:

```bash
pip install django-shopit
```

You should follow [django-cms] & [django-shop] installation guide first, and then add the following to your settings:

```python
INSTALLED_APPS = [
    ...
    'adminsortable2',
    'mptt',
    'parler',
    'shopit',
]

SHOP_APP_LABEL = 'shopit'
SHOP_PRODUCT_SUMMARY_SERIALIZER = 'shopit.serializers.ProductSummarySerializer'
SHOP_CART_MODIFIERS = (
    'shop.modifiers.DefaultCartModifier',
    'shopit.modifiers.ShopitCartModifier',
    ...
)
```

#### Urls

There are two ways to configure the urls. First would be to add to your `urls.py`:

```python
urlpatterns = [
    url(r'^shop/', include('shopit.urls')),
    ...
]
```

The second option is to use [django-cms] apphooks. **Shopit** comes with a couple of those for different application parts. `ShopitApphook` is the main one, and one that should always be attached to a page (if the urls are not already added). Then there are other optional apphooks for *account*, *categorization* & *products*. If you want to keep it simple, and not have to set every application part individually. You can add to your settings:

```python
SHOPIT_SINGLE_APPHOOK = True
```

This will load all the neccesary urls under the `ShopitApphook`.

## Documentation

Full documentation is availiable on [ReadTheDocs](http://django-shopit.readthedocs.org).


[Django]: https://www.djangoproject.com/
[django-shop]: https://github.com/awesto/django-shop
[django-cms]: https://github.com/divio/django-cms
[django-parler]: https://github.com/django-parler/django-parler
[django-mptt]: https://github.com/django-mptt/django-mptt
[django-admin-sortable2]: https://github.com/jrief/django-admin-sortable2
[django-measurement]: https://github.com/coddingtonbear/django-measurement


