An open API service indexing awesome lists of open source software.

https://github.com/nicolargo/pythoncliskeleton

Skeleton for Python CLI oriented module
https://github.com/nicolargo/pythoncliskeleton

Last synced: 9 months ago
JSON representation

Skeleton for Python CLI oriented module

Awesome Lists containing this project

README

          

Skeleton
========

My Python CLI package skeleton... Compatible with Pypi repository ;)

How to use it ?
===============

Clone it:

.. code-block:: bash

git clone git@github.com:nicolargo/pythoncliskeleton.git

Rename it to your *foo* project...

.. code-block:: bash

mv pythoncliskeleton foo
cd foo
rm -rf .git
mv skeleton foo
find . -type f | xargs sed -i 's/skeleton/foo/g'
find . -type f | xargs sed -i 's/Skeleton/Foo/g'
echo "# Amazing Foo project" > ./README.rst
echo "$(whoami)" > ./AUTHORS

Your skeleton is ready to be used !

Test it !

.. code-block:: bash

python -m foo
python -m foo -h

Ready to code ?

Go !