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
6 changes: 0 additions & 6 deletions .github/workflows/release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Generate Python README
run: python bindings/python/generate_readme.py

- name: Install protoc
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler

Expand Down Expand Up @@ -81,9 +78,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Generate Python README
run: python3 bindings/python/generate_readme.py

- name: Install protoc (Linux)
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ Cargo.lock
.vscode/

# Python
bindings/python/GENERATED_README.md
__pycache__/
*.py[cod]
*$py.class
Expand Down Expand Up @@ -51,4 +50,4 @@ website/package-lock.json
website/versioned_docs
website/versioned_sidebars
website/versions.json
website/pnpm-lock.yaml
website/pnpm-lock.yaml
1 change: 0 additions & 1 deletion bindings/python/GENERATED_README.md

This file was deleted.

28 changes: 28 additions & 0 deletions bindings/python/PYPI_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->

# Fluss Python Client

PyFluss is a Python library for programmatic access to Apache Fluss (Incubating).
It provides Python APIs to work with Fluss table metadata and read or write table data.

The documentation is available at <https://clients.fluss.apache.org/>.

## Get in Touch

Join the Fluss community at <https://fluss.apache.org/community/welcome/>.
104 changes: 0 additions & 104 deletions bindings/python/generate_readme.py

This file was deleted.

6 changes: 3 additions & 3 deletions bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ build-backend = "maturin"

[project]
name = "pyfluss"
description = "Apache Fluss (incubating) Python Binding"
description = "Apache Fluss (incubating) Python client"
authors = [{name = "Apache Fluss", email = "dev@fluss.apache.org"}]
license = {text = "Apache-2.0"}
readme = "GENERATED_README.md"
readme = "PYPI_README.md"
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: Apache Software License",
Expand All @@ -42,7 +42,7 @@ dependencies = [
]

[project.urls]
Homepage = "https://fluss.apache.org/"
Homepage = "https://clients.fluss.apache.org/"
Repository = "https://github.com/apache/fluss-rust"

[project.optional-dependencies]
Expand Down
4 changes: 0 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,3 @@ release [version]:
# Usage: just bump-version <current> <next> e.g. just bump-version 0.1.0 0.1.1
bump-version from to:
./scripts/bump-version.sh {{from}} {{to}}

# Regenerate bindings/python/GENERATED_README.md from website docs.
generate-python-readme:
python bindings/python/generate_readme.py
Loading