-
Notifications
You must be signed in to change notification settings - Fork 198
/
setup.py
28 lines (26 loc) · 1.1 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
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(name='mpl_finance',
version='0.10.1',
author='MPL Developers',
author_email='[email protected]',
py_modules=['mpl_finance'],
description='Finance plots using matplotlib',
long_description=long_description,
long_description_content_type='text/markdown; charset=UTF-8',
url='http://github.com/matplotlib/mpl-finance',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=['matplotlib'],
license="BSD-style",
classifiers=['Development Status :: 7 - Inactive',
'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',
)