/+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: 2008-05-03 07:30:58 UTC
  • Revision ID: git-v1:9342edb8666dde7e843e3eb438f1f6a717aa32fc
- Really added initial unit tests
- Converted setup.py to unix file format
- warnings made when data is being clipped and when data scaling is incorrect
- max_value is now a variable
- pie and google-o-meter chart data is now on the x-axis
- More grammar work

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
 
    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
 
    )
23
 
 
 
1
from distutils.core import setup
 
2
from setuptools import setup
 
3
from pygooglechart import __version__
 
4
 
 
5
setup(name='pygooglechart',
 
6
    version=__version__,
 
7
    py_modules=['pygooglechart'],
 
8
    description='A complete Python wrapper for the Google Chart API',
 
9
    author='Gerald Kaszuba',
 
10
    author_email='gerald@geraldkaszuba.com',
 
11
    url='http://pygooglechart.slowchop.com/',
 
12
    download_url='http://pygooglechart.slowchop.com/files/download/' \
 
13
        'pygooglechart-%s.tar.gz' % __version__,
 
14
    classifiers=[
 
15
        'Development Status :: 4 - Beta',
 
16
        'Intended Audience :: Developers',
 
17
        'License :: OSI Approved :: GNU General Public License (GPL)',
 
18
        'Operating System :: OS Independent',
 
19
        'Programming Language :: Python',
 
20
        'Topic :: Scientific/Engineering :: Visualization',
 
21
        'Topic :: Software Development :: Libraries :: Python Modules',
 
22
        ],
 
23
)
 
24