Skip to content

Commit

Permalink
Lots of cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
grantmcconnaughey committed Jan 4, 2016
1 parent 7e1337b commit 63d2d4a
Show file tree
Hide file tree
Showing 16 changed files with 660 additions and 693 deletions.
59 changes: 59 additions & 0 deletions .gitignore
@@ -0,0 +1,59 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/
41 changes: 0 additions & 41 deletions .hgignore

This file was deleted.

20 changes: 7 additions & 13 deletions README.rst
@@ -1,8 +1,10 @@
###############
Django-Chartit
###############
################
Django-Chartit 2
################

Chartit is a Django app that can be used to easily create charts from the data
The fork of Django Charit that adds compatibility to Django 1.7+!

Django Chartit is a Django app that can be used to easily create charts from the data
in your database. The charts are rendered using ``Highcharts`` and ``jQuery``
JavaScript libraries. Data in your database can be plotted as simple line
charts, column charts, area charts, scatter plots, and many more chart types.
Expand All @@ -28,7 +30,7 @@ Installation

You can install Django-Chartit from PyPI. Just do ::

$ pip install django_chartit
$ pip install django_chartit2

You also need supporting JavaScript libraries. See the
`Required JavaScript Libraries`_ section for more details.
Expand Down Expand Up @@ -185,14 +187,6 @@ the chart. ::
<div id='container'> Chart will be rendered here </div>
</body>

====
Demo
====

The above examples are just a brief taste of what you can do with
Django-Chartit. For more examples and to look at the charts in actions, check
out the `demo website <http://chartit.shutupandship.com/demo>`_.

===============
Documentation
===============
Expand Down
2 changes: 1 addition & 1 deletion chartit/__init__.py
@@ -1,4 +1,4 @@
"""This Django application can be used to create charts and pivot charts
"""This Django application can be used to create charts and pivot charts
directly from models.
"""
from .chartdata import PivotDataPool, DataPool
Expand Down

0 comments on commit 63d2d4a

Please sign in to comment.