-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (37 loc) · 1.06 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
from setuptools import find_packages, setup
setup(
name='hq_superset',
version='1.1.0',
description='CommCare HQ Superset Integration',
license='Apache2',
author='Dimagi Inc.',
author_email='[email protected]',
url='https://github.com/dimagi/hq_superset',
packages=find_packages(exclude=['docs', 'tests']),
include_package_data=True,
install_requires=[
'dimagi-superset==3.1.0.post1',
# Dependencies based on Superset 3.1.0 where applicable
'Authlib==1.3.0',
'celery==5.2.7',
'cryptography==41.0.2',
'jinja2==3.1.2',
'psycopg2==2.9.6',
'requests==2.31.0',
'sentry-sdk[flask]==1.39.2',
'Werkzeug==2.3.3',
'WTForms==2.3.3',
'ddtrace==2.17.0rc2'
],
extras_require={
'dev': [
'git-build-branch',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.9'
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.11'
],
)