Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
General: Fix pywal error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanaraps committed Jun 27, 2017
1 parent ae769c2 commit b8f1e73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pywal/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib


__version__ = "0.2.2"
__version__ = "0.2.3"


# Internal variables.
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""wal - setup.py"""
from setuptools import setup
from setuptools import setup, find_packages
import pywal


Expand Down Expand Up @@ -31,11 +31,9 @@
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
],
packages=['pywal'],
packages=find_packages(),
entry_points={
"console_scripts": [
"wal=pywal.__main__:main"
]
"console_scripts": ["wal=pywal.__main__:main"]
},
python_requires=">=3.6"
)

0 comments on commit b8f1e73

Please sign in to comment.