Repository URL to install this package:
Version:
0.2.0a7 ▾
|
django-building-blocks
/
METADATA
|
---|
Metadata-Version: 2.1
Name: django-building-blocks
Version: 0.2.0a7
Summary: Abstract Django base models to act as building blocks for rapid development of Django database models
Home-page: https://github.com/kaoslabsinc/django-building-blocks
Author: Kaos Labs Inc.
Author-email: keyvan@keyvanm.com
License: BSD-3-Clause
Keywords: django,abstract,models,building blocks,database models
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: django-model-utils
Requires-Dist: rules
Requires-Dist: dj-kaos-utils
Requires-Dist: django-object-actions
Requires-Dist: django-fsm (~=2.8)
Requires-Dist: djangorestframework
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 Building Blocks
Abstract Django base models to act as building blocks for rapid development of Django database models
## Development and Testing
### 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
```