mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-22 13:59:01 +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
|
*.pyc
|
||||||
subprocess
|
subprocess
|
||||||
re
|
re
|
||||||
|
build/*
|
||||||
|
@ -4,7 +4,7 @@ Global Constants.
|
|||||||
import pathlib
|
import pathlib
|
||||||
|
|
||||||
|
|
||||||
__version__ = "0.2.3"
|
__version__ = "0.2.4"
|
||||||
|
|
||||||
|
|
||||||
# Internal variables.
|
# Internal variables.
|
||||||
|
4
setup.py
4
setup.py
@ -1,5 +1,5 @@
|
|||||||
"""wal - setup.py"""
|
"""wal - setup.py"""
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup
|
||||||
import pywal
|
import pywal
|
||||||
|
|
||||||
|
|
||||||
@ -31,7 +31,7 @@ setup(
|
|||||||
"Operating System :: POSIX :: Linux",
|
"Operating System :: POSIX :: Linux",
|
||||||
"Programming Language :: Python :: 3.6",
|
"Programming Language :: Python :: 3.6",
|
||||||
],
|
],
|
||||||
packages=find_packages(),
|
packages=["pywal"],
|
||||||
entry_points={
|
entry_points={
|
||||||
"console_scripts": ["wal=pywal.__main__:main"]
|
"console_scripts": ["wal=pywal.__main__:main"]
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user