-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
34 lines (31 loc) · 1.07 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
from setuptools import setup
setup(
name='d6tflow',
version='0.2.6',
packages=['d6tflow','d6tflow.targets','d6tflow.tasks'],
url='https://github.com/d6t/d6tflow',
license='MIT',
author='DataBolt Team',
author_email='[email protected]',
description='For data scientists and data engineers, d6tflow is a python library which makes building complex data science workflows easy, fast and intuitive.',
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>=3.0.1', 'pandas', 'pyarrow','d6tcollect>=1.0.6'
],
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=[]
)
'''
# publish
# pip install setuptools wheel twine
python setup.py sdist bdist_wheel
twine upload dist/* --skip-existing
<<<<<<< HEAD
=======
>>>>>>> master-prod
'''