File: setup.py

package info (click to toggle)
pygooglechart 0.4.0%2Bgit20140622-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 364 kB
  • ctags: 300
  • sloc: python: 1,501; makefile: 130; sh: 5
file content (27 lines) | stat: -rw-r--r-- 934 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup

try: from setuptools import setup
except ImportError: pass

from pygooglechart import __version__

setup(name='pygooglechart',
    version=__version__,
    py_modules=['pygooglechart'],
    description='A complete Python wrapper for the Google Chart API',
    author='Gerald Kaszuba',
    author_email='gerald@geraldkaszuba.com',
    url='https://github.com/gak/pygooglechart',
    download_url='http://slowchop.com/pygooglechart/download/' \
        'pygooglechart-%s.tar.gz' % __version__,
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: GNU General Public License (GPL)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Topic :: Scientific/Engineering :: Visualization',
        'Topic :: Software Development :: Libraries :: Python Modules',
        ],
)