/+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 05:31:11 UTC
  • Revision ID: git-v1:606b8fe55157458136af5c54683fe3079a000b92
Added GPL license file "COPYING"

Show diffs side-by-side

added added

removed removed

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