forked from onaio/superset-patchup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 791 Bytes
/
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
"""
Setup.py for superset-patchup
"""
from setuptools import setup, find_packages
setup(
name='superset-patchup',
version=__import__('superset_patchup').__version__,
description='Superset blueprint for Canopy - https://canopyinsights.com',
license='Apache2',
author='Ona Systems Inc',
author_email='[email protected]',
url='https://github.com/onaio/superset-patchup',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'apache-superset',
'authlib',
'future',
'requests',
],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'
],
)