Python Package Scaffold Builder
$ pip install -U create-pypkg
The image is available at Docker Hub.
$ docker image pull dceoy/create-pypkg
-
Create a new package.
Replace
newpackage
below with your package's name.$ mkdir newpackage $ create-pypkg ./newpackage
-
Test the command-line interface of the package. (optional)
$ python -m venv venv $ source venv/bin/activate $ pip install -U ./newpackage $ newpackage --help $ newpackage --debug foo bar
Run create-pypkg --help
for more information.