Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/thirdparty/cairoplot-trunk/trunk/setup.py
blob: 328b2f2de9e96c68170d2c4b831eb36287153547 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
'''Cairoplot installation script.'''

from distutils.core import setup
import os

setup(
    description='Cairoplot',
    license='GNU LGPL 2.1',
    long_description='''
        Using Python and PyCairo to develop a module to plot graphics in an
        easy and intuitive way, creating beautiful results for presentations.
        ''',
    name='Cairoplot',
    py_modules=['cairoplot','series'],
    url='http://linil.wordpress.com/2008/09/16/cairoplot-11/',
    version='1.1',
    )