aboutsummaryrefslogtreecommitdiff
path: root/src/__init__.py
diff options
context:
space:
mode:
authortassaron2022-04-22 17:09:50 -0400
committertassaron2022-04-22 17:09:50 -0400
commit05d2ebc3c69f5a876d602004f69202c5ba8b09f7 (patch)
treeea3eeb6f356ed2cb06b536878134dace39b38eb4 /src/__init__.py
parent2a66c3b77bb8c438a3f278da2d4d90a7ee476feb (diff)
make pip-installable as a package
Diffstat (limited to 'src/__init__.py')
-rw-r--r--src/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/__init__.py b/src/__init__.py
index 73f174a..08131ce 100644
--- a/src/__init__.py
+++ b/src/__init__.py
@@ -3,6 +3,9 @@ import os
import logging
+__version__ = '2.0.0rc6'
+
+
class Logger(logging.getLoggerClass()):
'''
Custom Logger class to handle custom VERBOSE log level.
@@ -31,6 +34,3 @@ if getattr(sys, 'frozen', False):
else:
# unfrozen
wd = os.path.dirname(os.path.realpath(__file__))
-
-# make relative imports work when using /src as a package
-sys.path.insert(0, wd)