-
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.
many fixes to the inner project's
__init__.py
- Loading branch information
1 parent
8773725
commit be9f340
Showing
1 changed file
with
11 additions
and
6 deletions.
There are no files selected for viewing
17 changes: 11 additions & 6 deletions
17
{{cookiecutter.project_slug}}/src/{{cookiecutter.project_slug}}/__init__.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,8 +1,13 @@ | ||
"""Top-level package for {{ cookiecutter.project_name }}.""" | ||
"""Top-level package for {{cookiecutter.project_name}}.""" | ||
|
||
__author__ = """{{ cookiecutter.full_name }}""" | ||
__email__ = '{{ cookiecutter.email }}' | ||
__version__ = '{{ cookiecutter.version }}' | ||
__all__ = [ | ||
"NODE_CLASS_MAPPINGS", | ||
"NODE_DISPLAY_NAME_MAPPINGS", | ||
] | ||
|
||
import NODE_CLASS_MAPPINGS | ||
import NODE_DISPLAY_NAME_MAPPINGS | ||
__author__ = """{{cookiecutter.full_name}}""" | ||
__email__ = "{{cookiecutter.email}}" | ||
__version__ = "{{cookiecutter.version}}" | ||
|
||
from .nodes import NODE_CLASS_MAPPINGS | ||
from .nodes import NODE_DISPLAY_NAME_MAPPINGS |