Use __init__ to append this package's dir to path.

This commit is contained in:
2021-07-03 18:33:26 +02:00
parent 86d716391c
commit 467615b355

View File

@@ -1,5 +1,10 @@
#!/usr/bin/env python3.6
# -*- encoding: utf-8 -*-
"""Python Torrent Searcher/Scraper."""
__version__ = 'v0.0.2'
from sys import path
from os.path import dirname
path.append(dirname(__file__))
__version__ = '0.1'