forked from matplotlib/mpl-finance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 946 Bytes
/
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
from setuptools import setup
setup(name='mpl_finance',
version='0.10.0',
author='MPL Developers',
author_email='[email protected]',
py_modules=['mpl_finance'],
description='Finance plots using matplotlib',
url='http://github.com/matplotlib/mpl_finance',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=['matplotlib'],
license="BSD",
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='finance',
)