-
Notifications
You must be signed in to change notification settings - Fork 3
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 #6 from Attumm/towards_version_three
version three
- Loading branch information
Showing
10 changed files
with
367 additions
and
172 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 |
---|---|---|
|
@@ -9,4 +9,5 @@ source = | |
omit = | ||
setup.py | ||
*test* | ||
maat/version.py | ||
|
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,13 +1,14 @@ | ||
from .maat import scale, validate | ||
from .exceptions import Invalid | ||
|
||
from .validations import registered_functions | ||
from .validations import types | ||
from .validations import int_validation, str_validation, float_validation, list_validation, dict_validation | ||
|
||
from .transformations import registered_transformation | ||
|
||
from .extras import protected | ||
from .version import VERSION as version | ||
|
||
__all__ = ['scale', 'protected', 'Invalid', 'registered_functions', 'registered_transformation', | ||
__all__ = ['scale', 'protected', 'Invalid', 'types', 'registered_transformation', | ||
'int_validation', 'str_validation', 'float_validation', 'list_validation', 'dict_validation', 'uuid_validation' | ||
'validate'] | ||
'validate', 'version'] |
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 @@ | ||
VERSION = "3.0.0" |
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 |
---|---|---|
|
@@ -9,15 +9,15 @@ | |
name='Maat', | ||
author='Melvin Bijman', | ||
author_email='[email protected]', | ||
version='2.0.0', | ||
version='3.0.0', | ||
license='MIT', | ||
|
||
py_modules=['maat'], | ||
packages=['maat'], | ||
|
||
platforms=['any'], | ||
|
||
description='Validate like Maat', | ||
description='Validate like a Maat', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
|
||
|
Oops, something went wrong.