Skip to main content

One command simplest way to make and upload a python package!

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pypacklib-0.0.1.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

pypacklib-0.0.1-py3-none-any.whl (6.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page