2018-06-01 14:15:07 +00:00
|
|
|
[](https://travis-ci.org/makimo/django-eav2)
|
2018-06-01 15:19:49 +00:00
|
|
|
[](https://coveralls.io/github/makimo/django-eav2?branch=master)
|
2018-06-04 11:09:38 +00:00
|
|
|
[](https://www.codacy.com/app/IwoHerka/django-eav2?utm_source=github.com&utm_medium=referral&utm_content=makimo/django-eav2&utm_campaign=Badge_Grade)
|
2018-06-03 13:14:15 +00:00
|
|
|
[](https://codeclimate.com/github/makimo/django-eav2/maintainability)
|
2018-06-08 16:15:26 +00:00
|
|
|

|
|
|
|
|

|
2018-06-01 14:15:07 +00:00
|
|
|
|
2018-06-01 12:29:17 +00:00
|
|
|
### Django EAV 2 - Entity-Attribute-Value storage for Django
|
2010-09-28 13:39:57 +00:00
|
|
|
|
2018-03-27 15:57:21 +00:00
|
|
|
#### Introduction
|
2010-09-28 13:39:57 +00:00
|
|
|
|
2018-06-01 12:29:17 +00:00
|
|
|
Django EAV 2 is a fork of django-eav (which itself was derived from eav-django).
|
2018-03-27 15:57:21 +00:00
|
|
|
This project aims to:
|
2010-09-28 13:39:57 +00:00
|
|
|
|
2018-06-01 12:29:17 +00:00
|
|
|
- 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.
|
2018-06-06 23:02:04 +00:00
|
|
|
|
|
|
|
|
### 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)
|
|
|
|
|
```
|