forked from matplotlib/mplfinance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 2.05 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup
from setuptools import find_packages
pkg_location = 'src'
pkg_name = 'mplfinance'
vfile = './'+pkg_location+'/'+pkg_name+'/_version.py'
vers = {}
with open(vfile) as f:
exec(f.read(), {}, vers)
with open('README.md') as f:
long_description = f.read()
setup(name=pkg_name,
version=vers['__version__'],
author='MPL Developers',
author_email='[email protected]',
maintainer_email='[email protected]',
py_modules=[pkg_name],
description='Utilities for the visualization, and visual analysis, of financial data',
long_description=long_description,
long_description_content_type='text/markdown; charset=UTF-8',
url='http://github.com/matplotlib/mplfinance',
platforms='Cross platform (Linux, Mac OSX, Windows)',
install_requires=['matplotlib','pandas'],
license="BSD-style",
package_dir={'': pkg_location},
packages=find_packages(where=pkg_location),
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Framework :: Matplotlib',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords=['finance','candlestick','ohlc','market','investing','technical analysis'],
)