Added __init__.py info to package, moved TopLevelDocumentMetaclass to base.py, added tests for dictionary-style access.
9 lines
154 B
Python
9 lines
154 B
Python
from document import Document
|
|
import fields
|
|
from fields import *
|
|
|
|
__all__ = fields.__all__ + ['Document']
|
|
|
|
__author__ = 'Harry Marr'
|
|
__version__ = '0.1'
|