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:
parent
96c6066a91
commit
28dabf2271
3 changed files with 5 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -8,6 +8,10 @@ DOCKER_RUN_TTY=docker run --interactive --tty -v $(shell pwd):/app $(DOCKER_NAME
|
||||||
|
|
||||||
.ONESHELL:
|
.ONESHELL:
|
||||||
|
|
||||||
|
# Run script
|
||||||
|
run:
|
||||||
|
python3 -m virtscreen
|
||||||
|
|
||||||
# Docker tools
|
# Docker tools
|
||||||
.PHONY: docker docker-build
|
.PHONY: docker docker-build
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -195,7 +195,7 @@ setup(
|
||||||
# executes the function `main` from this package when invoked:
|
# executes the function `main` from this package when invoked:
|
||||||
entry_points={ # Optional
|
entry_points={ # Optional
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'virtscreen = virtscreen.main:main',
|
'virtscreen = virtscreen.__main__:main',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue