django-eav2/README.md

45 lines
1.7 KiB
Markdown
Raw Normal View History

2018-06-01 14:15:07 +00:00
[![Build Status](https://travis-ci.org/makimo/django-eav2.svg?branch=master)](https://travis-ci.org/makimo/django-eav2)
2018-06-01 15:19:49 +00:00
[![Coverage Status](https://coveralls.io/repos/github/makimo/django-eav2/badge.svg?branch=master)](https://coveralls.io/github/makimo/django-eav2?branch=master)
2018-06-04 11:09:38 +00:00
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/159540d899bd41bb860f0ce996427e1f)](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
[![Maintainability](https://api.codeclimate.com/v1/badges/b90eacf7a90db4b58f13/maintainability)](https://codeclimate.com/github/makimo/django-eav2/maintainability)
2018-06-03 23:43:38 +00:00
[![Requirements Status](https://requires.io/github/makimo/django-eav2/requirements.svg?branch=master)](https://requires.io/github/makimo/django-eav2/requirements/?branch=master)
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)
```