mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-22 05:48:53 +01:00
General: Remove find_packages
This commit is contained in:
parent
b8f1e73e11
commit
277c27c98a
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ pywal.egg-info/*
|
||||
*.pyc
|
||||
subprocess
|
||||
re
|
||||
build/*
|
||||
|
@ -4,7 +4,7 @@ Global Constants.
|
||||
import pathlib
|
||||
|
||||
|
||||
__version__ = "0.2.3"
|
||||
__version__ = "0.2.4"
|
||||
|
||||
|
||||
# Internal variables.
|
||||
|
4
setup.py
4
setup.py
@ -1,5 +1,5 @@
|
||||
"""wal - setup.py"""
|
||||
from setuptools import setup, find_packages
|
||||
from setuptools import setup
|
||||
import pywal
|
||||
|
||||
|
||||
@ -31,7 +31,7 @@ setup(
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
],
|
||||
packages=find_packages(),
|
||||
packages=["pywal"],
|
||||
entry_points={
|
||||
"console_scripts": ["wal=pywal.__main__:main"]
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user