forked from platypush/platypush
[#240] Migrated clipboard
plugin from pyperclip
to pyclip
.
Closes: #240
This commit is contained in:
parent
c645ce6bb8
commit
7a368ebbb8
5 changed files with 21 additions and 11 deletions
4
setup.py
4
setup.py
|
@ -17,7 +17,7 @@ def readfile(fname):
|
|||
def pkg_files(dir):
|
||||
paths = []
|
||||
# noinspection PyShadowingNames
|
||||
for (path, _, files) in os.walk(dir):
|
||||
for path, _, files in os.walk(dir):
|
||||
for file in files:
|
||||
paths.append(os.path.join('..', path, file))
|
||||
return paths
|
||||
|
@ -238,7 +238,7 @@ setup(
|
|||
# Support for SSH integration
|
||||
'ssh': ['paramiko'],
|
||||
# Support for clipboard integration
|
||||
'clipboard': ['pyperclip'],
|
||||
'clipboard': ['pyclip'],
|
||||
# Support for luma.oled display drivers
|
||||
'luma-oled': ['luma.oled @ git+https://github.com/rm-hull/luma.oled'],
|
||||
# Support for DBus integration
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue