This commit is contained in:
Kreyren 2020-02-07 12:24:03 +00:00
parent e931843579
commit 129db45535
9 changed files with 13 additions and 18 deletions

2
.github/README.md vendored

@ -17,4 +17,4 @@ https://codesandbox.io/s/github/RXT0112/RXT0112
## ABSTRACT
Package manager capable of source and binary import/export with tracking in `world` file and options.
Developed with GUI in mind
Developed with GUI in mind

@ -33,9 +33,9 @@ build-brainfuck:
@ printf 'FIXME: %s\n' "translate zernit in brainfuck"
@ exit 1
# FIXME: requires python3.6+ and pip3
build-python:
@ printf 'FIXME: %s\n' "translate zernit in python"
@ exit 1
@ pip3 install -r requirements.txt
## CLEAN ##

0
ping

3
requirements.txt Normal file

@ -0,0 +1,3 @@
# Dependencies for python
termcolor==1.1.0

@ -11,4 +11,4 @@ Resolve arguments to subcommands and provide backend for libraries/modules if re
### Practical examples
end-user inputs `main help` through cli -> Display help message
end-user inputs `main resolve app-compat/wine` -> Resolve wine on end-user's system if compatible system and toolchain is used
end-user inputs `main resolve app-compat/wine` -> Resolve wine on end-user's system if compatible system and toolchain is used

@ -1,6 +1,12 @@
import sys
from termcolor import cprint
"""
FIXME-DOCS: Add documentation
Made for Python 3.6 ~ Python 3.8.1
Requires pip for termcolor
"""
def cli_arg():
if len(sys.argv) == 1:

@ -1,8 +0,0 @@
# Requirements
* Python3.6 - python3.8.x
* pip -> termcolor
# Run
```bash
$ python3.x -m pip install -r requirements.txt ; python3.x zernit.py
```

@ -1,5 +0,0 @@
requires: python3.6+
requires: pip3
run:
pip install -r requirements.txt

@ -1 +0,0 @@
termcolor==1.1.0