mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-17 06:50:24 +00:00
Django EAV 2 - EAV storage for modern Django
| docs | ||
| eav | ||
| tests | ||
| .coveralls.yml | ||
| .gitignore | ||
| .travis.yml | ||
| CONTRIBUTORS.md | ||
| LICENSE | ||
| README.md | ||
| requirements.txt | ||
| runtests | ||
| setup.py | ||
Django EAV 2 - Entity-Attribute-Value storage for Django
Introduction
Django EAV 2 is a fork of django-eav (which itself was derived from eav-django). This project aims to:
- add Python 3 support
- add Django 1.11 and 2.0 support
- modernize and clean-up the codebase
- drop Django <1.11 dependencies
- remove dependency on Sites framework
- fix unresolved issues
- update documentation (Sphinx + ReadTheDocs)
- create exhaustive (and automated) tests
- add new features
(For now) our progress can be tracked through issues. Feel free to join the discussion.
Installing from git
pip install git+https://github.com/makimo/django-eav2@master
Installing from source
git clone git@github.com:makimo/django-eav2.git
cd django-eav2
python setup.py install
To uninstall:
python setup.py install --record files.txt
rm $(cat files.txt)