From 583a0c19ad2f67a54130a219eeeaccf53ea08ded Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 26 Jun 2017 12:09:35 +1000 Subject: General: Split wal into multiple files. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') 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" -- cgit v1.2.3 From 0bf70c105ec6cc5b6cfa3c4710c01fa78b968c54 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 26 Jun 2017 14:41:57 +1000 Subject: General: Cleanup --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c0f86ed..4fe010f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ """wal - setup.py""" from setuptools import setup -import pywal.__main__ as pywal +import pywal.settings as pywal DESC = ( -- cgit v1.2.3 From e329f3aea94618bbcd27f154225344428e22163a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 26 Jun 2017 15:39:39 +1000 Subject: General: Renames settings.py to globals.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 4fe010f..569f9b3 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ """wal - setup.py""" from setuptools import setup -import pywal.settings as pywal +import pywal.globals as pywal DESC = ( -- cgit v1.2.3 From 091021a8789011807332f3e32c4ba97d6748c01b Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Mon, 26 Jun 2017 20:03:53 +1000 Subject: General: Add __version__ to __init__.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 569f9b3..01e2096 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ """wal - setup.py""" from setuptools import setup -import pywal.globals as pywal +import pywal DESC = ( -- cgit v1.2.3