Skip to content

Commit e7ed25d

Browse files
committed
fix imports and deps in setup.py
1 parent f029941 commit e7ed25d

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

escrotum/ffmpeg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import subprocess
3-
from util import cmd_exists
3+
from .util import cmd_exists
44

55

66
class Ffmpeg:

escrotum/main.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
from gi.repository import GLib as glib
1616
import cairo
1717

18-
from util import get_selected_window, get_window_from_xid, daemonize, bgra2rgba
19-
from ffmpeg import Ffmpeg
20-
from keybinding import GrabKeyboard
18+
from .util import get_selected_window, get_window_from_xid, daemonize, bgra2rgba
19+
from .ffmpeg import Ffmpeg
20+
from .keybinding import GrabKeyboard
2121

2222

2323
__version__ = "0.2.1"

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22

33
setup(
44
name="escrotum",
5-
version="1.0.0",
5+
version="1.0.1",
66
author='Roger Duran',
77
author_email='[email protected]',
88
url='https://github.com/Roger/escrotum',
9-
download_url='https://github.com/Roger/escrotum/archive/1.0.0.tar.gz',
9+
download_url='https://github.com/Roger/escrotum/archive/1.0.1.tar.gz',
1010
keywords=['screenshot', 'screen-recording', 'scrot', 'cli'],
1111
packages=["escrotum"],
1212
include_package_data=True,
1313
zip_safe=False,
1414
install_requires=[
15-
'python-gobject',
15+
'gobject',
1616
'xcffib',
1717
],
1818
entry_points={

0 commit comments

Comments
 (0)