Metadata-Version: 2.4
Name: gcp_utilities
Version: 0.0.1
Summary: Simple utilities for GCP BigQuery, Cloud Storage and Cloud Logging
Author: Collins Mmasaba
Author-email: Collins Mmasaba <mmasabacollins9@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/cmmasaba/gcp-tools
Project-URL: Issues, https://github.com/cmmasaba/gcp-tools/issues
Description-Content-Type: text/markdown

# Publishing Python Packages to Pip

## Env Vars

The following environment variables need to be set:

```bash

export GCP_PROJECT_ID=""
export GCP_BUCKET_NAME=""
export GCP_DATASET_ID=""
export GCP_LOGGER_NAME=""
export GOOGLE_APPLICATION_CREDENTIALS=""

```

### Challenges

```python

python3 -m build

```

No module named build

The `build` module from PEP 517 is not part of the standard library for Python. This error means it is not installed and should be installed using the following command:

```python

python3 -m pip install build

```

Ensure `__init__.py` is in the folder listed as project name
