Skip to content

Commit

Permalink
Cleaning up splash implementation and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
justinb4003 committed Dec 29, 2024
1 parent 8ff0c1b commit 4b818bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 130 deletions.
7 changes: 4 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,10 @@ def edit_settings(self, event):

# Here's how we fire up the wxPython app
if __name__ == '__main__':
import pyi_splash
pyi_splash.close()
print('main hit')
import sys
if hasattr(sys, 'frozen'):
import pyi_splash
pyi_splash.close()
_app_settings = get_app_settings()
if _app_settings is None:
_app_settings = default_app_settings()
Expand Down
129 changes: 2 additions & 127 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,138 +1,13 @@
altgraph==0.17.4
argcomplete==2.0.0
asttokens==2.4.1
attrs==22.2.0
Babel==2.10.3
blinker==1.5
boolean.py==4.0
CacheControl==0.12.12
Cerberus==1.3.2
certifi==2024.8.30
chardet==5.1.0
charset-normalizer==3.3.2
click==8.1.3
colorama==0.4.6
comm==0.2.2
cryptography==38.0.4
cupshelpers==1.0
dbus-python==1.3.2
debugpy==1.8.5
decorator==5.1.1
distlib==0.3.6
distro==1.8.0
et-xmlfile==1.1.0
executing==2.1.0
filelock==3.9.0
findpython==0.2.4
fuse-python==1.0.5
ghp-import==2.1.0
gpg==1.18.0
greenlet==2.0.2
httplib2==0.20.4
idna==3.8
importlib-metadata==4.12.0
iniconfig==1.1.1
installer==0.6.0
ipykernel==6.29.5
ipython==8.27.0
jedi==0.19.1
Jinja2==3.1.2
joblib==1.2.0
jupyter_client==8.6.2
jupyter_core==5.7.2
lazr.restfulclient==0.14.5
lazr.uri==1.0.6
license-expression==30.1.0
livereload==2.6.3
louis==3.24.0
lunr==0.6.2
Markdown==3.4.1
markdown-it-py==2.1.0
MarkupSafe==2.1.2
ipython==8.12.3
matplotlib-inline==0.1.7
mdurl==0.1.2
mergedeep==1.3.4
mkdocs==1.4.2
more-itertools==8.10.0
msgpack==1.0.3
nest-asyncio==1.6.0
nltk==3.8
numpy==2.1.1
oauthlib==3.2.2
olefile==0.46
openpyxl==3.1.5
packaging==24.1
pandas==2.2.2
parso==0.8.4
pdm==2.2.1
pdm-pep517==1.1.2
pep517==0.13.0
pexpect==4.9.0
pillow==10.4.0
pipx==1.1.0
platformdirs==4.3.2
pluggy==1.0.0+repack
prompt_toolkit==3.0.47
psutil==6.0.0
ptyprocess==0.7.0
pure_eval==0.2.3
py==1.11.0
pyarrow==17.0.0
pycairo==1.20.1
pycups==2.0.1
pycurl==7.45.2
Pygments==2.18.0
PyGObject==3.42.2
pyinotify==0.9.6
pyinstaller==6.11.1
pyinstaller-hooks-contrib==2024.11
PyJWT==2.6.0
pylibacl==0.7.0
pynvim==0.4.2
pyparsing==3.0.9
PyQt5==5.15.9
PyQt5-sip==12.11.1
PySimpleSOAP==1.16.2
pysmbc==1.0.23
pytest==7.2.1
python-apt==2.6.0
python-dateutil==2.9.0.post0
python-debian==0.1.49
python-debianbts==4.0.1
python-dotenv==0.21.0
pytz==2024.2
pyxattr==0.8.1
pyxdg==0.28
PyYAML==6.0
pyyaml_env_tag==0.1
pyzmq==26.2.0
qrcode==8.0
regex==2022.10.31
reportbug==12.0.0
reportlab==4.2.5
requests==2.32.3
requests-toolbelt==0.10.1
resolvelib==0.9.0
rich==13.3.1
shellingham==1.5.0
simplejson==3.18.3
six==1.16.0
stack-data==0.6.3
tomli==2.0.1
tomli_w==1.0.0
tomlkit==0.11.7
tornado==6.4.1
tqdm==4.64.1
traitlets==5.14.3
typing_extensions==4.12.2
tzdata==2024.1
unearth==0.7.2
urllib3==2.2.2
userpath==1.8.0
virtualenv==20.17.1+ds
wadllib==1.3.6
watchdog==2.2.1
wcwidth==0.2.13
wxPython==4.2.0
xdg==5
zipp==1.0.0
attrdict3==2.0.2

0 comments on commit 4b818bd

Please sign in to comment.