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

Distributed to Pypl, and initial Makefile

This commit is contained in:
Bumsik Kim 2018-05-20 01:35:13 -04:00
parent f87702f638
commit 75ba481175
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
2 changed files with 27 additions and 1 deletions

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
# See https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
# for python packaging reference.
.PHONY: wheel install clean
wheel:
python setup.py bdist_wheel --universal
upload:
twine upload dist/*
install:
python setup.py install --user
launch:
./launch.sh
clean:
rm -rf build dist virtscreen.egg-info

View file

@ -1,4 +1,5 @@
# VirtScreen # VirtScreen
> Make your iPad/tablet/computer as a secondary monitor on Linux. > Make your iPad/tablet/computer as a secondary monitor on Linux.
![gif example](https://github.com/kbumsik/VirtScreen/blob/d2387d3321bd4d110d890ca87703196df203dc89/icon/gif_example.gif?raw=true) ![gif example](https://github.com/kbumsik/VirtScreen/blob/d2387d3321bd4d110d890ca87703196df203dc89/icon/gif_example.gif?raw=true)
@ -18,7 +19,13 @@ $ sudo apt-get install x11vnc
### Installing package ### Installing package
#### From the Git repository #### Using `pip`
```bash
$ pip install virtscreen
```
#### From the Git repository directly
```bash ```bash
$ python setup.py install # add --user option if you have permission problem $ python setup.py install # add --user option if you have permission problem