Menu

[r126]: / trunk / matplotlib / setup.py  Maximize  Restore  History

Download this file

36 lines (28 with data), 1.0 kB

 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
28
29
30
31
32
33
34
35
from distutils.core import setup
import sys,os
import glob
from setupext import build_gtkgd
data = []
data.extend(glob.glob('fonts/afm/*.afm'))
data.extend(glob.glob('fonts/ttf/*.ttf'))
data.extend(glob.glob('images/*.xpm'))
ext_modules = []
if 0: # how do I add '--with-gtkgd' flag checking?
build_gtkgd(ext_modules)
setup(name="matplotlib",
version= '0.50g',
description = "Matlab style python plotting package",
author = "John D. Hunter",
author_email="jdhunter@ace.bsd.uchicago.edu",
url = "http://matplotlib.sourceforge.net",
long_description = """
matplotlib strives to produce publication quality 2D graphics
using matlab plotting for inspiration. Although the main lib is
object oriented, there is a functional matlab style interface
for people coming from matlab.
""",
packages=['matplotlib', 'matplotlib/backends'],
platforms='any',
ext_modules = ext_modules,
data_files=[('share/matplotlib', data)],
)
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.