Modern Python Projects Transcripts
Chapter: Let's build a package
Lecture: Technical considerations
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
This time we will start with a cookie cutter template. We will search for one to create a pypi package on. This will be our starting point.
0:10
Next, we will modify the setup.py file and we will add an entry point, so the up timer can be used directly in the command line.
0:19
Entry points are similar to the poetry scripts that we defined in the previous chapter. They let you connect the CLI commands,
0:26
to Python functions in your code, and then we'll follow the usual steps to publish the package on pypi.
0:32
So, we will build it and we will publish it using the standard steps defined in the documentation.