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

split single virtscreen.py into submodules

This commit is contained in:
Bumsik Kim 2018-06-28 10:12:08 -04:00
parent 2ea15b8943
commit 96c6066a91
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
9 changed files with 929 additions and 897 deletions

View file

@ -136,7 +136,7 @@ setup(
#
# py_modules=["my_module"],
#
packages=['virtscreen'], # Required
packages=find_packages(), # Required
# This field lists other packages that your project depends on to run.
# Any package you put here will be installed by pip when your project is
@ -195,7 +195,7 @@ setup(
# executes the function `main` from this package when invoked:
entry_points={ # Optional
'console_scripts': [
'virtscreen = virtscreen.virtscreen:main',
'virtscreen = virtscreen.main:main',
],
},