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:
parent
f87702f638
commit
75ba481175
2 changed files with 27 additions and 1 deletions
19
Makefile
Normal file
19
Makefile
Normal 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
|
|
@ -1,4 +1,5 @@
|
|||
# VirtScreen
|
||||
|
||||
> Make your iPad/tablet/computer as a secondary monitor on Linux.
|
||||
|
||||

|
||||
|
@ -18,7 +19,13 @@ $ sudo apt-get install x11vnc
|
|||
|
||||
### Installing package
|
||||
|
||||
#### From the Git repository
|
||||
#### Using `pip`
|
||||
|
||||
```bash
|
||||
$ pip install virtscreen
|
||||
```
|
||||
|
||||
#### From the Git repository directly
|
||||
|
||||
```bash
|
||||
$ python setup.py install # add --user option if you have permission problem
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue