Skip to content

Commit

Permalink
Add minimal setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Sep 8, 2016
1 parent d8db345 commit 6710d9b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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:https://github.com/matplotlib/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',
],
keywords='finance',
)

0 comments on commit 6710d9b

Please sign in to comment.