Metadata-Version: 2.1
Name: nj_lab01
Version: 1.3
Author: Nsundidi Jorge
Author-email: jorgen@canisius.edu
License: Apache License Version 2.0
Description-Content-Type: text/markdown

# Lab 1: Repos, Git, and packages
This repository represents the bare minimum required to install this package.
## Key Files
| File  | Purpose |
| ------------- | ------------- |
| setup.py  | Contains all the metadata and how to build the code artifact. Setup.py usually contains the author, email, name and version of the package. A full list of what can be saved in a setup.py is [available here](https://docs.python.org/3.11/distutils/setupscript.html) |
| requirements.txt  | The external dependencies. In order for this project to run, it needs to download OTHER projects and use them. |
| README.md  | This project description document |
| src dir  | The directory labeled "src" contains all the Python modules. This setup.py will iterate this file to find the modules  |
| scripts dir  | The directory labeled "scripts" contains all command-line executable programs provided by the project |
## PyPi
This project has been published to PyPi as an example. This can be found here.

## Installation
Installing this project from pypi is done with this command

```cmd
pip install nj_lab01
```
