Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 443 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 443 Bytes

Example of a modern Python package with a command line interface.

We can test the package installation in virtual environment as follows:

Install locally:

python3 -m venv venv
source venv/bin/activate
python3 -m pip install .

Install from Git:

python3 -m venv venv
source venv/bin/activate
python3 -m pip install git+https://github.com/CSCfi/[email protected]

Command line usage:

pypackage-cli --help