-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from datarevenue-berlin/ah-add-configuration
Add confuse configuration
- Loading branch information
Showing
26 changed files
with
403 additions
and
326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
"""Top-level package for drfs.""" | ||
|
||
__author__ = """Data Revenue GmbH""" | ||
__email__ = '[email protected]' | ||
__email__ = "[email protected]" | ||
|
||
import confuse | ||
|
||
config = confuse.LazyConfig("drfs", __name__) | ||
|
||
from .path import DRPath | ||
from .structure import Tree, P | ||
from ._version import get_versions | ||
__version__ = get_versions()['version'] | ||
|
||
__version__ = get_versions()["version"] | ||
del get_versions | ||
|
||
from .path import DRPath | ||
from .structure import Tree, P |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
rtype: class | ||
fs_opts: | ||
s3: {} | ||
abfs: {} | ||
gcfs: {} | ||
file: {} | ||
memory: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.