/+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-09 07:18:39 UTC
  • Revision ID: git-v1:3303a4ec6195ace1a8fa77910dffcc147585a972
small changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from distutils.core import setup
2
 
from pygooglechart import __version__
3
 
 
4
 
setup(name='pygooglechart',
5
 
      version=__version__,
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
 
      )
12