/+junk/pygooglechart-py3k

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/pygooglechart-py3k
4 by gak
trunk updates
1
from distutils.core import setup
12 by gak
Final changes before release
2
from pygooglechart import __version__
3
4 by gak
trunk updates
4
setup(name='pygooglechart',
12 by gak
Final changes before release
5
      version=__version__,
4 by gak
trunk updates
6
      py_modules=['pygooglechart'],
7
      description='A complete Python wrapper for the Google Chart API',
8
      author='Gerald Kaszuba',
9
      author_email='gerald@geraldkaszuba.com',
10
      url='http://pygooglechart.slowchop.com/',
11
      )
7 by gak
version bump, added BadContentTypeException, added a few examples, added COPYING licence, code is more PEP8 friendly, download() checks for content type and raises on bad http codes, add_data returns the index of the dataset, Line doesn't allow being an instance.
12