Codementor Events

How Do I Publish My First Python Package

Published Aug 17, 2019

I have published my first python package which is a financial calculator.

I have coded my package as my own actually its a fun project.
To make a package you have to need some third party package wheel and twine

First you have to hard code your project.
You have to make it distributable by using the command.

python setup.py bdist wheel
twine upload dist/*
Discover and read more posts from Ahadujjaman Nur
get started