/+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-15 23:49:21 UTC
  • Revision ID: git-v1:90f95fe288d07bd21d68d0917cbd83a1874cd814
Added more metadata in setup.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
from pygooglechart import __version__
3
3
 
4
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
 
      )
 
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
    download_url='http://pygooglechart.slowchop.com/files/download/' \
 
12
        'pygooglechart-%s.tar.gz' % __version__,
 
13
    classifiers=[
 
14
        'Development Status :: 4 - Beta',
 
15
        'Intended Audience :: Developers',
 
16
        'License :: OSI Approved :: GNU General Public License (GPL)',
 
17
        'Operating System :: OS Independent',
 
18
        'Programming Language :: Python',
 
19
        'Topic :: Scientific/Engineering :: Visualization',
 
20
        'Topic :: Software Development :: Libraries :: Python Modules',
 
21
        ]
 
22
    )
12
23