forked from newville/wxmplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 1.29 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
#!/usr/bin/env python
from setuptools import setup
try:
from lib import __version__ as version
except:
version = 'unknown'
long_desc = '''A library for wxPython based on matplotlib for high-level,
richly featured 2-D plotting and displaying 3-D data as intensity maps and
contour plots. Easy-to-use wx Panels and Frame provide high-quality plots
and allow some user interaction and customization of the plots. '''
setup(name = 'wxmplot',
version = version,
author = 'Matthew Newville',
author_email = 'newville@cars.uchicago.edu',
url = 'http://newville.github.io/wxmplot/',
download_url = 'http://github.com/newville/wxmplot/',
requires = ('wx', 'numpy', 'matplotlib', 'six'),
license = 'OSI Approved :: MIT License',
description = 'A library for plotting in wxPython using matplotlib',
long_description = long_desc,
platforms = ('Windows', 'Linux', 'Mac OS X'),
classifiers=['Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization'],
package_dir = {'wxmplot': 'lib'},
packages = ['wxmplot'],
)