Metadata-Version: 2.1
Name: django-ios-storekit
Version: 1.0.9
Summary: iOS In-App Purchase's receipt validation server plugin for Django
Home-page: https://github.com/nnsnodnb/django-ios-storekit
License: MIT
Keywords: django,ios,in-app-purchases,apple
Author: Yuya Oka
Author-email: nnsnodnb@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
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 :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Django (>=2,<3)
Requires-Dist: requests (>=2,<3)
Project-URL: Repository, https://github.com/nnsnodnb/django-ios-storekit
Description-Content-Type: text/markdown

# django-ios-storekit

[![Tests](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/tests.yml)
[![Linter](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/linter.yml/badge.svg?branch=master)](https://github.com/nnsnodnb/django-ios-storekit/actions/workflows/linter.yml)
[![Coverage Status](https://coveralls.io/repos/github/nnsnodnb/django-ios-storekit/badge.svg?branch=master)](https://coveralls.io/github/nnsnodnb/django-ios-storekit?branch=master)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-ios-storekit)
![PyPI](https://img.shields.io/pypi/v/django-ios-storekit)
![PyPI - Format](https://img.shields.io/pypi/format/django-ios-storekit)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/django-ios-storekit)

A Django plugin for iOS StoreKit server.

## Supported python versions

3.6.x ~ 3.8.x

## Supported django versions

2.x

## Installation

```shell script
$ pip install django-ios-storekit
```

Add `storekit` into `INSTALLED_APPS` in `settings.py` file.

```python
INSTALLED_APPS += (
    'storekit',
)
```

```shell script
$ python manage.py migrate
```

## License

This software is licensed under the MIT License (See [LICENSE](https://github.com/nnsnodnb/django-ios-storekit/blob/master/LICENSE)).

