We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 154a199 commit 4417b70Copy full SHA for 4417b70
setup.py
@@ -17,6 +17,6 @@
17
"License :: Public Domain",
18
"Operating System :: OS Independent",
19
],
20
- install_requires = ["html5tagger>=1.2.1", "setuptools"],
+ install_requires = ["html5tagger>=1.2.1"],
21
include_package_data = True,
22
)
tracerite/__init__.py
@@ -1,10 +1,6 @@
1
-import pkg_resources
2
-
3
from .html import html_traceback
4
from .notebook import load_ipython_extension, unload_ipython_extension
5
from .trace import extract_chain
6
7
__all__ = ["html_traceback", "extract_chain"]
8
-__version__ = pkg_resources.require(__name__)[0].version
9
10
-del pkg_resources
+__version__ = "1.1.1"
0 commit comments