-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 793 Bytes
/
setup.py
File metadata and controls
21 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name = 'dataflowkit',
packages = ['dataflowkit', 'dataflowkit.graphs', 'dataflowkit.datasets', 'dataflowkit.recipes', 'dataflowkit.utils'], # this must be the same as the name above
version = '0.2.1',
description = 'A dataflow management framework for datascientists and engineers',
author = 'Icarus So',
author_email = 'icarus.so@gmail.com',
url = 'https://github.com/IcarusSO/dataflowkit', # use the URL to the github repo
download_url = 'https://github.com/IcarusSO/dataflowkit/tarball/0.2.0', # I'll explain this in a second
keywords = ['dataflow', 'data', 'flow', 'management'], # arbitrary keywords
classifiers = [],
install_requires=[
'boto',
'pandas',
'sqlalchemy',
'zeep',
'pymysql',
'numpy'
]
)