1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00

Changed main.py to __main__.py

This commit is contained in:
Bumsik Kim 2018-06-28 10:26:41 -04:00
parent 96c6066a91
commit 28dabf2271
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
3 changed files with 5 additions and 1 deletions

View file

@ -8,6 +8,10 @@ DOCKER_RUN_TTY=docker run --interactive --tty -v $(shell pwd):/app $(DOCKER_NAME
.ONESHELL:
# Run script
run:
python3 -m virtscreen
# Docker tools
.PHONY: docker docker-build

View file

@ -195,7 +195,7 @@ setup(
# executes the function `main` from this package when invoked:
entry_points={ # Optional
'console_scripts': [
'virtscreen = virtscreen.main:main',
'virtscreen = virtscreen.__main__:main',
],
},