-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from RNKuhns/main
Adding Missing build_tools directory
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Script to search for missing init FILES. | ||
set -euxo pipefail | ||
|
||
FILES=$( find ./dachshund -type d '!' -exec test -e "{}/__init__.py" ";" -not -path "**/__pycache__" -not -path "**/datasets/data*" -print ) | ||
|
||
if [[ -n "$FILES" ]] | ||
then | ||
echo "Missing __init__.py files detected in the following modules:" | ||
echo "$FILES" | ||
exit 1 | ||
fi |
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,18 @@ | ||
#!/usr/bin/env python3 -u | ||
# copyright: dachshund, BSD-3-Clause License (see LICENSE file) | ||
"""A little interface to access lots of data. | ||
:mod:`dachshund` provides ightweight interface for accessing ag and econ data. | ||
""" | ||
from typing import List | ||
|
||
__version__: str = "0.1.0" | ||
|
||
__author__: List[str] = ["RNKuhns"] | ||
__all__: List[str] = [ | ||
"get_default_config", | ||
"get_config", | ||
"set_config", | ||
"reset_config", | ||
"config_context", | ||
] |