Metadata-Version: 2.1
Name: django-iam
Version: 0.4.0rc3
Summary: Roles and access management for django apps
Home-page: https://github.com/kaoslabsinc/django-iam
Author: Kaos Labs Inc.
Author-email: keyvan@keyvanm.com
License: BSD-3-Clause
Keywords: django,iam,users,auth,authorization,kaos
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: django (>=3.2)
Requires-Dist: rules (>=3.3)
Requires-Dist: django-building-blocks (>=0.2.0-rc2)
Provides-Extra: test
Requires-Dist: tox ; extra == 'test'
Requires-Dist: pytest-django ; extra == 'test'
Requires-Dist: pytest-pythonpath ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

# Django Identity and Access Management

Roles and access management for django apps

```bash
pip install django-building-blocks
```

Documentation: https://django-iam.readthedocs.io/

## Development and Testing

Version numbers follow [Semantic Versioning 2.0.0](https://semver.org/)

Note: Releases with major version zero (`0.y.z`) are in experimental public API. There is no guarantee of API
compatibility between `0.y.z` and `0.b.c` where `y != z`. You may expect the public API to be backwards compatible
between `0.y.z` and `0.y.c` where `c >= z`.

### IDE Setup

Add the `example` directory to the `PYTHONPATH` in your IDE to avoid seeing import warnings in the `tests` modules. If
you are using PyCharm, this is already set up.

### Running the Tests

Install requirements

```
pip install -r requirements.txt
```

For local environment

```
pytest
```

For all supported environments

```
tox
```
