Skip to content

Commit

Permalink
adding packaging code for sdtables
Browse files Browse the repository at this point in the history
  • Loading branch information
cunningr committed May 30, 2020
1 parent 47c0c40 commit 8d96d67
Show file tree
Hide file tree
Showing 5 changed files with 501 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Pycharms guff
.idea/

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
19 changes: 19 additions & 0 deletions sdtables/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# coding: utf-8


"""
sdtables - Load table data from various sources
into python dictionary structures
cunningr - 2020
Requires:
- openpyxl >= 2.6.2
- jsonschema
"""

__version__ = "1.0.0"

from sdtables.xlTables import *
Loading

0 comments on commit 8d96d67

Please sign in to comment.