-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename module to tracerite. Change images to WebP.
- Loading branch information
Showing
16 changed files
with
66 additions
and
66 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name="niceback", | ||
author="L. Kärkkäinen", | ||
name="tracerite", | ||
author="Sanic Community", | ||
author_email="[email protected]", | ||
description="Human-readable tracebacks in Jupyter notebooks", | ||
long_description=open("README.md").read(), | ||
description="Human-readable HTML tracebacks for Python exceptions", | ||
long_description=open("README.md", encoding="UTF-8").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Tronic/niceback", | ||
url="https://github.com/sanic-org/tracerite", | ||
use_scm_version=True, | ||
setup_requires = ["setuptools_scm"], | ||
packages=find_packages(), | ||
|
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,10 @@ | ||
import pkg_resources | ||
|
||
from .html import html_traceback | ||
from .notebook import load_ipython_extension, unload_ipython_extension | ||
from .trace import extract_chain | ||
|
||
__all__ = ["html_traceback", "extract_chain"] | ||
__version__ = pkg_resources.require(__name__)[0].version | ||
|
||
del pkg_resources |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import logging | ||
|
||
logger = logging.getLogger("niceback") | ||
logger = logging.getLogger("tracerite") | ||
logger.setLevel(logging.INFO) |
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