mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-28 19:03:17 +01:00
General: Fix pywal error.
This commit is contained in:
parent
ae769c2401
commit
b8f1e73e11
@ -4,7 +4,7 @@ Global Constants.
|
||||
import pathlib
|
||||
|
||||
|
||||
__version__ = "0.2.2"
|
||||
__version__ = "0.2.3"
|
||||
|
||||
|
||||
# Internal variables.
|
||||
|
8
setup.py
8
setup.py
@ -1,5 +1,5 @@
|
||||
"""wal - setup.py"""
|
||||
from setuptools import setup
|
||||
from setuptools import setup, find_packages
|
||||
import pywal
|
||||
|
||||
|
||||
@ -31,11 +31,9 @@ setup(
|
||||
"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"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user