/+junk/pygooglechart-py3k

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/pygooglechart-py3k

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: gak
  • Date: 2007-12-13 22:35:59 UTC
  • Revision ID: git-v1:a7ad1afe3f08b7de8b3a3cbdc7165d4f88ddbe92
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.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from distutils.core import setup
2
2
setup(name='pygooglechart',
3
 
      version='0.1.0',
 
3
      version='0.1.1',
4
4
      py_modules=['pygooglechart'],
5
5
      description='A complete Python wrapper for the Google Chart API',
6
6
      author='Gerald Kaszuba',
7
7
      author_email='gerald@geraldkaszuba.com',
8
8
      url='http://pygooglechart.slowchop.com/',
9
9
      )
 
10