Metadata-Version: 2.1
Name: linuxforhealth-packaging
Version: 1.1b1
Summary: Sample Integrations for PyPI and GitHub Actions
Home-page: https://github.com/LinuxForHealth/python-packaging
License: Apache 2.0 License
Keywords: linuxforhealth,packaging
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# python-packaging
Sample Integrations for PyPI and GitHub Actions

## Pre-requisites

- [Python](https://www.python.org/downloads/) >= 3.9 for application development

## Quickstart CLI

### OS X / Linux
```shell
# clone the repo
git clone https://github.com/LinuxForHealth/python-packaging.git
cd python-packaging

# create virtual environment and create an "editable" install
python3 -m venv venv --clear && \
        source venv/bin/activate && \
        python3 -m pip install --upgrade pip setuptools wheel build

python3 -m pip install -e .[dev]

# run tests
python3 -m pytest        
```


