-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
django_request_formatter -> django_api_forms 😨
- Loading branch information
Showing
13 changed files
with
48 additions
and
22 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
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,23 @@ | ||
from .exceptions import RequestValidationError | ||
from .fields import BooleanField | ||
from .fields import FieldList | ||
from .fields import FormField | ||
from .fields import FormFieldList | ||
from .fields import EnumField | ||
from .fields import DictionaryField | ||
from .fields import AnyField | ||
from .forms import Form | ||
from .version import __version__ | ||
|
||
__all__ = [ | ||
'RequestValidationError', | ||
'BooleanField', | ||
'FieldList', | ||
'FormField', | ||
'FormFieldList', | ||
'EnumField', | ||
'DictionaryField', | ||
'AnyField', | ||
'Form', | ||
'__version__' | ||
] |
File renamed without changes.
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__ = '0.7.0' |
Empty file.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -18,15 +18,15 @@ def read_files(files): | |
|
||
|
||
meta = {} | ||
with open('./django_request_formatter/version.py') as f: | ||
with open('django_api_forms/version.py') as f: | ||
exec(f.read(), meta) | ||
|
||
setup( | ||
name='django_request_formatter', | ||
name='django_api_forms', | ||
version=meta['__version__'], | ||
packages=['django_request_formatter'], | ||
packages=['django_api_forms'], | ||
install_requires=REQUIRED, | ||
url='https://github.com/Sibyx/django_request_formatter', | ||
url='https://github.com/Sibyx/django_api_forms', | ||
license='MIT', | ||
author='Jakub Dubec', | ||
author_email='[email protected]', | ||
|
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