forked from d6t/d6tstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 877 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 877 Bytes
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='d6tstack',
version='0.1.3',
packages=['d6tstack'],
url='https://github.com/d6t/d6tstack',
download_url = 'https://github.com/d6t/d6tstack/archive/0.1.3.tar.gz',
license='MIT',
author='DataBolt Team',
author_email='support@databolt.tech',
description='Databolt Python Library',
long_description='Databolt python library - accelerate data engineering. '
'DataBolt provides tools to reduce the time it takes to get your data ready for '
'evaluation and analysis.',
install_requires=[
'numpy','openpyxl','xlrd','pandas>=0.22.0','xlwt','sqlalchemy','scipy','pyarrow','psycopg2','mysql-connector','pymysql'
],
include_package_data=True,
python_requires='>=3.5',
keywords=['d6tstack', 'fast-data-evaluation'],
classifiers=[]
)