forked from d6t/d6tflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 841 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
from setuptools import setup
setup(
name='d6tflow',
version='0.2.0',
packages=['d6tflow','d6tflow.targets','d6tflow.tasks'],
url='https://github.com/d6t/d6tflow',
license='MIT',
author='DataBolt Team',
author_email='[email protected]',
description='d6tflow is a python library which makes it easier to build data workflows',
long_description='d6tflow is a python library which makes it easier to build data workflows'
'See https://github.com/d6t/d6tflow for details',
install_requires=['luigi', 'pandas', 'pyarrow','d6tcollect'
],
extras_require={
'dask': ['toolz','dask[dataframe]'],
'pipe': ['d6tpipe', 'jinja2']},
include_package_data=True,
python_requires='>=3.5',
keywords=['d6tflow', 'data workflow', 'data pipelines', 'luigi'],
classifiers=[]
)