Makes python package creation easy again!
Support me
Most of the packages are simple and a collection of few functions or classes.
We have created a package for that now that can create python packages, upload to github and distribute to pypi all in a single call.
We collect desired packagename, author name and a few info interactively and create the package from a single python file.
You can use multiple python scripts too.
To use multiple scripts give a space seperated list when asked for file locations with main file (the file where all the functions and classes you want user to use is present) at the start.
For simple packaging, one single file is enough.
Fun part: This package is also created by running the script located at src/createmypypackage/__init__.py
Install from PyPi
pip3 install createmypypackage
Or Install from main branch
pip3 install git+https://github.com/Souvic/createmypypackage.git
One interactive command with easy-to-follow prompts to create/upload/update them all!
cmpp is shorthand of createmypypackage
You can use createmypypackage as the command also with same results
To make a new package and upload to github from a some/one python file(s):
- Run the command _cmpp (and just follow the interactive framework forgetting the lines[2,3,4] written below)
- Input yes at the first prompt as you will be questioned.
- Follow the instructions that will appear.
- Make necessary changes if you have to (e.g. updating README.md file) now on the github repo before submitting to PyPi(by following the upload instruction below)
To update/upload a package to PyPi which already has a GitHub repo:
- Make all necessary changes in the python files(location: src/packagename/) in the github repo.
- Run the command _cmpp (and just follow the interactive framework forgetting the lines[2,3,4] written below)
- Input no at the first prompt.
- Follow the instructions that will appear.
Set up your $HOME/.pypirc file with the passtoken like this to save twine password to avoid typing username and password everytime Doc Link
Create $HOME/.pypirc and paste the below code replacing only _yourpasstoken
[pypi]
username = __token__
password = yourpasstoken
Use git store password utility to avoid typing GitHub username and password everytime Doc Link
Paste the below code for that with your passtoken and username
git credential-store --file ~/.mysecretfilelocation store
protocol=https
host=github.com
username=yourusername
password=passtoken
Important note:
You can use
Github-flavored Markdown
to write your content for your README.md