aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Araps <[email protected]>2017-06-27 10:05:46 +1000
committerGitHub <[email protected]>2017-06-27 10:05:46 +1000
commit2a990b2afaa2cb3d9d846f5d748e186793fa9929 (patch)
treefc2856afa5e31d8e15d8a803e2669f657007b4d4
parentGeneral: Remove changelog. (diff)
parentGeneral: fix console_script entry_point. Closes #9 (diff)
downloadpywal-2a990b2afaa2cb3d9d846f5d748e186793fa9929.tar.xz
pywal-2a990b2afaa2cb3d9d846f5d748e186793fa9929.zip
Merge pull request #10 from danielx/setup-fix
General: fix console_script entry_point. Closes #9
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 01e2096..2b79661 100644
--- a/setup.py
+++ b/setup.py
@@ -34,7 +34,7 @@ setup(
packages=['pywal'],
entry_points={
"console_scripts": [
- "wal=pywal:main"
+ "wal=pywal.__main__:main"
]
},
python_requires=">=3.6"