Skip to content

Souvic/pypacklib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Single command for python package creation from one/multiple .py files ( Make packaging fun again! )

License: MIT stars Github All Releases PyPI python

Build Status Scrutinizer Code Quality Release date Latest Stable Version

tweet

Support me

Buy Me A Coffee

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.

  • Supports python 3.6+
  • Autopopulates setup files, README.md and version etc , uploads to GitHub and PyPI
  • Easily Customizable
  • Easiest to use with only single interactive command
  • 1 min video tutorial

Fun part: This package is also created by running the script located at src/pypacklib/__main__.py

Install from PyPi

pip3 install pypacklib

Or Install from main branch

pip3 install git+https://github.com/Souvic/pypacklib.git

One command to create/upload/update them all!

Easy-to-follow prompts will guide you through the process

pypack

Unnecessary detailed instructions (just see the 1 min video)

To make a new package and upload to github from a some/one python file(s):

  1. Run the command pypack (and just follow the interactive framework forgetting the lines[2,3,4] written below)
  2. Input yes at the first prompt as you will be questioned.
  3. Follow the instructions that will appear.
  4. 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:

  1. Make all necessary changes in the python files(location: src/packagename/) in the github repo.
  2. Run the command pypack (and just follow the interactive framework forgetting the lines[2,3,4] written below)
  3. Input no at the first prompt.
  4. Follow the instructions that will appear.

Extras to save GitHub and PyPI passtokens (save typing time)

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

About

This package makes it super easy to make new python packages and distribute them to GitHub and PyPI, literally with just one command execution!

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages