Corrections
This commit is contained in:
parent
bdedba8d11
commit
48a4b37b76
@ -4,8 +4,9 @@ A simple replacement for phantomjs using PyQt.
|
|||||||
|
|
||||||
This code is based on a brilliant idea of
|
This code is based on a brilliant idea of
|
||||||
[Michael Franzl](https://gist.github.com/michaelfranzl/91f0cc13c56120391b949f885643e974/raw/a0601515e7a575bc4c7d4d2a20973b29b6c6f2df/phantom.py)
|
[Michael Franzl](https://gist.github.com/michaelfranzl/91f0cc13c56120391b949f885643e974/raw/a0601515e7a575bc4c7d4d2a20973b29b6c6f2df/phantom.py)
|
||||||
that he wrote up in his
|
that he wrote up in his blog:
|
||||||
[blog](https://blog.michael.franzl.name/2017/10/16/phantom-py/index.html)
|
* https://blog.michael.franzl.name/2017/10/16/phantomjs-alternative-write-short-pyqt-scripts-instead-phantom-py/
|
||||||
|
* https://blog.michael.franzl.name/2017/10/16/phantom-py/
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
@ -21,8 +21,9 @@ packages = find:
|
|||||||
include_package_data = false
|
include_package_data = false
|
||||||
install_requires =
|
install_requires =
|
||||||
qasync
|
qasync
|
||||||
attrs
|
cryptography
|
||||||
typing-extensions ; python_version < '3.8'
|
rsa
|
||||||
|
stem
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
|
3
setup.py
3
setup.py
@ -27,7 +27,8 @@ if __name__ == '__main__':
|
|||||||
python_requires="~=3.6",
|
python_requires="~=3.6",
|
||||||
# probably works on PyQt6 and PySide2 but untested
|
# probably works on PyQt6 and PySide2 but untested
|
||||||
# https://github.com/CabbageDevelopment/qasync/
|
# https://github.com/CabbageDevelopment/qasync/
|
||||||
install_requires=['qasync', 'PyQt5'],
|
install_requires=['qasync',
|
||||||
|
'PyQt5'],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': ['phantompy = phantompy.__main__:iMain', ]},
|
'console_scripts': ['phantompy = phantompy.__main__:iMain', ]},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
Loading…
Reference in New Issue
Block a user