-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.11 KB
/
setup.py
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
from setuptools import setup, find_packages
from mpxl import __version__
with open('longdesc.rst') as f:
long_description = f.read()
setup(
name='mpxl',
version=__version__,
packages=find_packages(),
scripts = ['scripts/mpxl','scripts/mpxl_template'],
install_requires = ['matplotlib','appscript','kaplot >= 0.9a','wxPython'],
author = 'Austin Howard',
author_email = '[email protected]',
url = 'http://github.com/austin1howard/mpxl',
description = 'Matplotlib plotting tool for Microsoft Excel on OS X',
long_description = long_description,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Office/Business :: Financial :: Spreadsheet',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Environment :: MacOS X',
'Operating System :: MacOS :: MacOS X',
'License :: OSI Approved :: MIT License'
],
data_files=[('share/mpxl', ['README.md', 'longdesc.rst',
'LICENSE']),]
)