-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 854 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 854 Bytes
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
from distutils.core import setup
import sys,os
import glob
data = []
data.extend(glob.glob('fonts/afm/*.afm'))
data.extend(glob.glob('fonts/ttf/*.ttf'))
data.extend(glob.glob('images/*.xpm'))
setup(name="matplotlib",
version= '0.40c',
description = "Matlab style python plotting package",
author = "John D. Hunter",
author_email="[email protected]",
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',
data_files=[('share/matplotlib', data)],
)