-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 1.1 KB
/
setup.py
File metadata and controls
25 lines (24 loc) · 1.1 KB
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
from setuptools import setup
setup(
name='d6tpipe',
version='1.2.7',
packages=['d6tpipe','d6tpipe.http_client','d6tpipe.luigi','d6tpipe.utils', 'cli'],
url='https://github.com/d6t/d6tpipe',
license='MIT',
author='DataBolt Team',
author_email='support@databolt.tech',
description='d6tpipe is a python library which makes it easier to exchange data',
long_description='d6tpipe is a python library which makes it easier to exchange data. For example between data vendors and consumers, data engineers and data scientists, teachers and students or desktop and laptop. In just a few lines of code, you can push and pull data to/from S3 and ftp in a simple and unified framework.',
install_requires=[
'luigi','tinydb','boto3','botocore','tinydb-serialization','cachetools','pyjwt','pyyaml','tqdm','Click','d6tcollect'
],
extras_require={
'ftp': ['pysftp','pyftpsync']},
include_package_data=True,
python_requires='>=3.5',
keywords=['d6tpipe', 'data-pipes'],
classifiers=[],
entry_points = {
'console_scripts': ['d6tpipe=cli.d6tpipe:main'],
}
)