The pypi last uploaded version is 1.0.1, which is lacking of some additions to master, for example:
git diff 1.0.1..master -- setup.py
diff --git a/setup.py b/setup.py
index 10a75f7..1998cbc 100644
--- a/setup.py
+++ b/setup.py
@@ -12,8 +12,9 @@ setup(
include_package_data=True,
zip_safe=False,
install_requires=[
- 'gobject',
+ 'PyGObject',
'xcffib',
+ 'pycairo',
],
entry_points={
'console_scripts': [
Why is important?
That makes impossible to me to install in a virtual environment
$ python -m venv venv; source venv/bin/activate;
$ pip install escrotum
$ ./venv/bin/escrotum
Traceback (most recent call last):
File "/tmp/venv/./bin/escrotum", line 5, in <module>
from escrotum.main import run
File "/tmp/venv/lib/python3.10/site-packages/escrotum/main.py", line 9, in <module>
import gi
ModuleNotFoundError: No module named 'gi'
$ pip list
Package Version
---------- -------
cffi 1.16.0
escrotum 1.0.1
gobject 0.1.0
pip 22.0.2
pycparser 2.21
setuptools 59.6.0
xcffib 1.5.0
The pypi last uploaded version is 1.0.1, which is lacking of some additions to master, for example:
git diff 1.0.1..master -- setup.pyWhy is important?
That makes impossible to me to install in a virtual environment