-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.31 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
ns = {}
with open(os.path.join(here, 'vertica_highcharts', 'version.py')) as f:
exec(f.read(), {}, ns)
setup(
name='vertica-highcharts',
version=ns['__version__'],
author='Kyper Developers',
author_email='[email protected]',
packages=find_packages(),
package_data={
'vertica_highcharts.highcharts': ['templates/*.html'],
'vertica_highcharts.highmaps': ['templates/*.html'],
'vertica_highcharts.highstock': ['templates/*.html']
},
url='https://github.com/vertica/vertica-highcharts',
download_url='https://github.com/vertica/vertica-highcharts/releases/tag/' + ns['__version__'],
description='Python Highcharts wrapper',
install_requires=[
"Jinja2",
"future"
],
keywords = ['python', 'ipython', 'highcharts', 'chart', 'visualization', 'graph', 'javascript', 'html'],
classifiers = [
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
]
)