mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
573 B
23 lines
573 B
# -*- coding: UTF-8 -*- |
|
|
|
""" Setup script for building SVG distribution |
|
|
|
Copyright © 2005 Jason R. Coombs |
|
""" |
|
|
|
from distutils.core import setup |
|
|
|
__author__ = 'Jason R. Coombs <jaraco@sandia.gov>' |
|
__version__ = '$Rev: $'[6:-2] |
|
__svnauthor__ = '$Author: $'[9:-2] |
|
__date__ = '$Date: $'[7:-2] |
|
|
|
setup ( name = 'SVGChart', |
|
version = '1.0.1', |
|
description = 'Python SVG Charting Support', |
|
author = 'Jason R. Coombs', |
|
author_email = 'jaraco@sandia.gov', |
|
packages = ['SVG'], |
|
package_dir = { 'SVG':'.' }, |
|
script_args = ( 'bdist_wininst', ) |
|
)
|
|
|