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
- Host: GitHub
- URL: https://github.com/nicolargo/pythoncliskeleton
- Owner: nicolargo
- License: mit
- Created: 2018-07-28T14:38:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T16:28:20.000Z (about 3 years ago)
- Last Synced: 2025-01-26T04:11:39.607Z (11 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Authors: AUTHORS
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 !