-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 917 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 917 Bytes
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
from setuptools import setup
setup(
name='mario-pipeline-tools',
version='0.61',
packages=['mario'],
url='https://github.com/JiscDACT/mario',
license='all rights reserved',
author='scottbw',
author_email='scott.wilson@jisc.ac.uk',
description='Base classes and helpers for common data pipeline tasks',
long_description='A set of base classes and helpers for common data pipeline tasks, '
'whether using in local control scripts or in Airflow tasks.',
package_data={
# If any package contains *.ini files, include them
'': ['*.ini']
},
include_package_data=True,
install_requires=[
'pandas',
'pypika',
'sqlalchemy',
'openpyxl'
],
extras_require={
'Airflow': ['apache-airflow-providers-common-sql'],
'Tableau': ['pantab', 'tableauhyperapi', 'tableau-builder==0.18']
}
)