From 081d631c1045545432c51fc3c3a951644e160522 Mon Sep 17 00:00:00 2001 From: manetta Date: Sat, 8 May 2021 17:59:12 +0200 Subject: [PATCH] from README.txt to README.md --- README.md | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..285f12f --- /dev/null +++ b/README.md @@ -0,0 +1,84 @@ +# ASCII-ART-BUT-WITH-UNICODE + +``` +---------H---------H---------H---------H---------H---------H---------H---------H---------H---------H +-------------------e------e-------e------e-------e-------e------e-------e------e-------e------------ +----------------------------l----l-----l----l----l----l----l-----l----l----l------------------------ +------------------------------------l---l--l--l--l--l--l--l---l--l---------------------------------- +-------------------------------------------oo-oo-o-oo-oo-o------------------------------------------ +----------------------------------------------- ------------------------------------------------ +-------------------------------------------------W-------------------------------------------------- +------------------------------------------------ooo------------------------------------------------- +---------------------------------------------rrrrrrrrrr--------------------------------------------- +----------------------------------------l-l-l--l-l-l--l-l-l-l--------------------------------------- +---------------------------------d---d---d---d---d---d---d---d---d----d----------------------------- +------------------------!-----!-----!------!-----!-----!------!-----!-----!------!------------------ +-------------- -------- -------- ------- -------- -------- ------- -------- -------- -------- ------ +----H----------H----------H-----------H----------H----------H-----------H----------H----------H----- +--------e-------------e------------e-------------e-------------e------------e-------------e--------- +-l---------------l---------------l---------------l---------------l---------------l---------------l-- +--------------l----------------l-----------------l-----------------l----------------l--------------- +-----------o------------------o------------------o------------------o------------------o------------ +--------- ------------------- ------------------- ------------------- ------------------- ---------- +---------W-------------------W-------------------W-------------------W-------------------W---------- +----------o------------------o-------------------o-------------------o------------------o----------- +------------r------------------r-----------------r-----------------r------------------r------------- +---------------l----------------l----------------l----------------l----------------l---------------- +-----l-------------d--------------d--------------d--------------d--------------d-------------l------ +------------o-----------!------------!-----------!-----------!------------!-----------o------------e +---------e--------- --------- --------- --------- --------- --------- --------- ---------l---------H +-------------------l------W-------H------H-------H-------H------H-------W------l-------e------------ +----------------------------l----o-----e----e----e----e----e-----o----o----l------------------------ +------------------------------------o---r--l--l--l--l--l--r--- --l---------------------------------- +------------------------------------------- l-ll-l-ll-lW-o------------------------------------------ +-----------------------------------------------Wdooo------------------------------------------------ +-------------------------------------------------o-------------------------------------------------- +------------------------------------------------rW ------------------------------------------------- +---------------------------------------------lHoooooHdr--------------------------------------------- +----------------------------------------d-e-r--r-r-r--r-e-!-l--------------------------------------- +---------------------------------!---l---l---l---l---l---l---l--- ----d----------------------------- +------------------------ -----l-----d------d-----d-----d------d-----l-----H------!------------------ +--------------H--------o--------!-------!--------!--------!-------!--------o--------e-------- ------ +----e---------- ---------- ----------- ---------- ---------- ----------- ---------- ----------l----- +--------W-------------H------------H-------------H-------------H------------H-------------W--------- +-o---------------e---------------e---------------e---------------e---------------e---------------o-- +--------------l----------------l-----------------l-----------------l----------------l--------------- +-----------l------------------l------------------l------------------l------------------l------------ +---------o-------------------o-------------------o-------------------o-------------------o---------- +--------- ------------------- ------------------- ------------------- ------------------- ---------- +----------W------------------W-------------------W-------------------W------------------W----------- +------------o------------------o-----------------o-----------------o------------------o------------- +---------------r----------------r----------------r----------------r----------------r---------------- +-----r-------------l--------------l--------------l--------------l--------------l-------------r------ +------------l-----------d------------d-----------d-----------d------------d-----------l------------l +``` + +Work in progress :) + +# Release (PyPi package building) + + + +Make the pip wheel: + +`$ python3 setup.py bdist_wheel` + +Upload the package to pypi: + +`$ twine upload dist/*` + +For the last step, you need to install Wheel and Twine (): + +`$ pip install wheel twine` + +# Develop the asciiWriter + +Make a virtualenv: + +`$ python3 -m venv venvname` + +Install asciiWriter in (editable) development mode: + +`$ pip install -e ./` + +Now you can work with the asciiWriter and the code will be updated when you make changes!