/+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
2
setup(name='pygooglechart',
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.
3
      version='0.1.1',
4 by gak
trunk updates
4
      py_modules=['pygooglechart'],
5
      description='A complete Python wrapper for the Google Chart API',
6
      author='Gerald Kaszuba',
7
      author_email='gerald@geraldkaszuba.com',
8
      url='http://pygooglechart.slowchop.com/',
9
      )
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.
10