Skip to content

Commit

Permalink
docs: update badge in readme (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Jan 22, 2025
1 parent cb0d54c commit 4555182
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ Databend Native Client in Rust

## Components

- [**core**](core): Databend RestAPI Rust Client [![image](https://img.shields.io/crates/v/databend-client.svg)](https://crates.io/crates/databend-client)
- [**core**](core): Databend RestAPI Rust Client

- [**driver**](driver): Databend SQL Client for both RestAPI and FlightSQL in Rust [![image](https://img.shields.io/crates/v/databend-driver.svg)](https://crates.io/crates/databend-driver)
- [**driver**](driver): Databend SQL Client for both RestAPI and FlightSQL in Rust

- [**cli**](cli): Databend Native CLI [![image](https://img.shields.io/crates/v/bendsql.svg)](https://crates.io/crates/bendsql)
- [**cli**](cli): Databend Native CLI

### Bindings

- [**python**](bindings/python): Databend Python Client [![image](https://img.shields.io/pypi/v/databend-driver.svg)](https://pypi.org/project/databend-driver)
- [**python**](bindings/python): Databend Python Client

- [**nodejs**](bindings/nodejs): Databend Node.js Client [![image](https://img.shields.io/npm/v/databend-driver.svg)](https://www.npmjs.com/package/databend-driver)
- [**nodejs**](bindings/nodejs): Databend Node.js Client

- [**java**](bindings/java): Databend Java Client (upcoming)

Expand Down
6 changes: 6 additions & 0 deletions bindings/nodejs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# databend-driver

Databend Node.js Client

[![image](https://img.shields.io/npm/v/databend-driver.svg)](https://www.npmjs.com/package/databend-driver)
![License](https://img.shields.io/npm/l/databend-driver.svg)
[![image](https://img.shields.io/npm/types/databend-driver.svg)](https://www.npmjs.com/package/databend-driver)

## Usage

```javascript
Expand Down
6 changes: 6 additions & 0 deletions bindings/python/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# databend-driver

Databend Python Client

[![image](https://img.shields.io/pypi/v/databend-driver.svg)](https://pypi.org/project/databend-driver)
![License](https://img.shields.io/pypi/l/databend-driver.svg)
[![image](https://img.shields.io/pypi/pyversions/databend-driver.svg)](https://pypi.org/project/databend-driver)

## Usage

### PEP 249 Cursor Object
Expand Down
22 changes: 21 additions & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,32 @@ classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",

"License :: OSI Approved :: Apache Software License",

"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Windows",
"Operating System :: Unix",

"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis"
]
description = "Databend Driver Python Binding"
license = { text = "Apache-2.0" }
name = "databend-driver"
readme = "README.md"
requires-python = ">=3.7, < 3.14"
requires-python = ">=3.8, < 3.14"
dynamic = ["version"]

[project.urls]
Expand Down

0 comments on commit 4555182

Please sign in to comment.