Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/publish_pypi_community.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish to PyPI - garf-community

on:
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest
environment:
name: pypi
permissions:
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Build the package
run: uv build libs/community

- name: Publish to PyPI
run: uv publish libs/community/dist/*
19 changes: 19 additions & 0 deletions libs/community/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Garf community libraries

## Installation

```
pip install garf-community
```

## What is it?

Bundle of all community libraries developed for `garf`.

## Supported APIs

* [YouTube Data API](https://google.github.io/garf/fetchers/youtube-data-api/)
* [YouTube Reporting API](https://google.github.io/garf/fetchers/youtube-reporting-api/)
* [Google Analytics](https://google.github.io/garf/fetchers/google-analytics-api/)
* [Google Merchant Center](https://google.github.io/garf/fetchers/merchant-center-api/)
* [Bid Manager](https://google.github.io/garf/fetchers/bid-manager/)
26 changes: 26 additions & 0 deletions libs/community/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "garf-community"
dependencies = [
"garf-youtube-data-api",
"garf-youtube-reporting-api",
"garf-bid-manager",
"garf-merchant-api",
"garf-google-analytics",
]
version = "0.0.1"
authors = [
{name = "Andrei Markin", email = "amarkin@google.com"},
{name = "Google Inc. (gTech gPS CSE team)", email = "no-reply@google.com"},
]
license = {text = "Apache 2.0"}
requires-python = ">=3.9"
description = "Garf community libraries"
readme = "README.md"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python"
]