Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions data_kale/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from data_kale.download import download
from data_kale.upload import upload
from data_kale.path import repository_path


from pkg_resources import get_distribution, DistributionNotFound
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

setuptools is a requirement

try:
__version__ = get_distribution('data-kale').version
except DistributionNotFound:
pass
Empty file added data_kale/object_/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author = "Jim Holmstr\u00F6m"
author-email = jim@aiwizo.com
summary = Simple Data Lake to sync data repositories to S3 compatible buckets.
project_urls =
Source Code = https://github.com/aiwizo/data-kale/
Source Code = https://github.com/codewell/data-kale/
keywords =
data
lake
Expand Down