This is the package template that we use internally when creating new python based importable packages. It has all of the basic functionality and workflows needed to create, build and publish new package to PyPI.
This package template does NOT provide any cli functionality but instead is designed for creating importable packages.
We decided to make this available along with our other tools to allow people to use a well engineered starting point when creating their own tools.
We also provide 2 other templates which we use.
- Modular Architecture: Organize your code into modules for better maintainability.
- Custom Exceptions: BAsic examples for implementing custom exceptions for specific error handling.
- Testing Examples: Basic examples for writing pytest tests for your package.
To install the importable package, clone the repository and navigate to the project directory:
git clone https://github.com/DevelopersToolbox/template-package-importable.git
cd template-package-importable
It is recommended to use a virtual environment to manage dependencies. You can create and activate a virtual environment using the following commands:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
Install the required dependencies:
pip install -r requirements.txt
The project is organized as follows:
template-package-importable/
├── wolfsoftware/
│ └── template_package_importable/
│ ├── __init__.py
│ ├── exceptions.py
│ └── functions.py
├── tests/
│ ├── __init__.py
│ └── test_template_package_importable.py
├── README.md
├── setup.py
└── requirements.txt
wolfsoftware/template_package_importable
: Contains the core modules of the application.exceptions.py
: Handles custom exceptions.functions.py
: Defines some example functions (for testing).
tests
: Where the pytest tests are located.test_template_package_importable.py
: The specific tests to run.
setup.py
: The package configuration.requirements.txt
: Lists the dependencies required for the project.README.md
: The file you are currently reading.