summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 660cc64..c0f86ed 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
"""wal - setup.py"""
from setuptools import setup
-import pywal
+import pywal.__main__ as pywal
DESC = (
@@ -11,7 +11,7 @@ DESC = (
DESC = "".join(DESC)
-VERSION = pywal.wal.__version__
+VERSION = pywal.__version__
DOWNLOAD_URL = f"https://github.com/dylanaraps/pywal/archive/{VERSION}.tar.gz"