Publishing a console application to pypi

1 · Abin Simon · Dec. 28, 2018, midnight
Let's say you have a very useful python script that you use and think other people might have some use out of it. One way is to just share the python snippet, but nah, that is too old school. Let us publish it to pypi so that anyone can just do a pip install your-awsome-tool and get going with it. So, how to do it? # Well, let us create a simple project. Maybe a simple countdown timer. I am gonna call the project counterer because I am too lazy to come up with a better name. Here is the initia...