mirror of
https://github.com/Kilian/Trimage.git
synced 2026-01-26 10:08:40 -05:00
ThreadPool is a module now and it is in setup.py
This commit is contained in:
parent
29be211a9d
commit
cdd11c92ee
3 changed files with 3 additions and 1 deletions
3
setup.py
3
setup.py
|
|
@ -12,7 +12,8 @@ setup(name = "trimage",
|
||||||
package_dir = {'trimage' : 'src/trimage'},
|
package_dir = {'trimage' : 'src/trimage'},
|
||||||
packages = ["trimage",
|
packages = ["trimage",
|
||||||
"trimage.hurry",
|
"trimage.hurry",
|
||||||
"trimage.hurry.filesize"],
|
"trimage.hurry.filesize",
|
||||||
|
"trimage.ThreadPool",],
|
||||||
package_data = {"trimage" : ["pixmaps/*.*"] },
|
package_data = {"trimage" : ["pixmaps/*.*"] },
|
||||||
data_files=[('share/icons/hicolor/scalable/apps', ['desktop/trimage.svg']),
|
data_files=[('share/icons/hicolor/scalable/apps', ['desktop/trimage.svg']),
|
||||||
('share/applications', ['desktop/trimage.desktop'])],
|
('share/applications', ['desktop/trimage.desktop'])],
|
||||||
|
|
|
||||||
1
src/trimage/ThreadPool/__init__.py
Normal file
1
src/trimage/ThreadPool/__init__.py
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
from ThreadPool import ThreadPool, ThreadPoolMixIn
|
||||||
Loading…
Add table
Add a link
Reference in a new issue