Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
dj-kaos-utils / METADATA
Size: Mime:
Metadata-Version: 2.1
Name: dj-kaos-utils
Version: 0.2.0a4
Summary: A set of utilities for the development of Kaos backends in Django
Home-page: https://github.com/keyvanm/dj-kaos-utils
Author: Keyvan Mosharraf
Author-email: keyvan@keyvanm.com
License: Kaos Labs Proprietary Software
Keywords: django,kaos,framework,utilities,utils
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 4.2
Classifier: Intended Audience :: Developers
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dateutil (>=2.8.2)
Requires-Dist: Pygments (>=2.14.0)
Requires-Dist: django (>=4.2)
Requires-Dist: rules (>=3.3)
Requires-Dist: djangorestframework (>=3.14.0)
Requires-Dist: django-object-actions (>=4.1.0)
Requires-Dist: django-filter (>=23.1)
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'

# DJ Kaos Utils

A set of utilities for the development of Kaos backends in Django

```bash
pip install dj-kaos-utils
```

<!-- Documentation: https://dj-kaos-utils.kaoslabs.dev/ -->

## 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
```