Metadata-Version: 2.4
Name: gcp_utilities
Version: 0.0.2
Summary: Simple utilities for GCP BigQuery, Cloud Storage and Cloud Logging
Project-URL: Homepage, https://github.com/cmmasaba/gcp-tools
Project-URL: Issues, https://github.com/cmmasaba/gcp-tools/issues
Author-email: Collins Mmasaba <mmasabacollins9@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
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
