-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.51 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.51 KB
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
long_description = """chartpy creates a simple easy to use API to plot in a number of great Python chart libraries like plotly (via cufflinks),
bokeh and matplotlib, with a unified interface. You simply need to change a single keyword to change which chart engine
to use (see below), rather than having to learn the low level details of each library. I've also created new stylesheets
and formatting to ensure that the default matplotlib styling looks more modern using Open Sans font. The library
also works well with Dash, plotly's web server library built on top of Flask."""
setup(name='chartpy',
version='0.1.16',
description='chartpy creates a simple easy to use API to plot in a number of great Python chart libraries',
author='Saeed Amen',
author_email='saeed@cuemacro.com',
long_description=long_description,
license='Apache 2.0',
keywords=['pandas', 'chart', 'plot', 'plotly'],
url='https://github.com/cuemacro/chartpy',
packages=find_packages(),
include_package_data=True,
install_requires=['pandas',
'matplotlib',
'pdfkit',
'twython',
'pytz',
'requests',
'numpy',
'plotly>=4.5.1',
'bokeh',
'vispy',
'reportlab',
'dataframe_image'],
zip_safe=False)