add setup file
This commit is contained in:
8
README
Normal file
8
README
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Install
|
||||||
|
|
||||||
|
pip install --user -e .
|
||||||
|
|
||||||
|
|
||||||
|
Uninstall
|
||||||
|
|
||||||
|
pip uninstall controldeck
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
import sys
|
||||||
from os import path, sep, makedirs
|
from os import path, sep, makedirs
|
||||||
from subprocess import Popen, PIPE, STDOUT
|
from subprocess import Popen, PIPE, STDOUT
|
||||||
from configparser import ConfigParser, DuplicateSectionError
|
from configparser import ConfigParser, DuplicateSectionError
|
||||||
@@ -129,5 +130,8 @@ def application():
|
|||||||
|
|
||||||
return wp
|
return wp
|
||||||
|
|
||||||
if __name__ == '__main__':
|
def main():
|
||||||
justpy()
|
justpy()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main())
|
||||||
|
|||||||
Reference in New Issue
Block a user