sync
Some checks failed
Build Wheels (cibuildwheel) / Build wheels on Linux (aarch64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on Linux (x86_64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on macOS (arm64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on macOS (x86_64) (push) Has been cancelled
Build Wheels (cibuildwheel) / Build wheels on Windows (push) Has been cancelled
Build Wheels (cibuildwheel) / Build source distribution (push) Has been cancelled
Build Wheels (cibuildwheel) / Publish to GitHub Release (push) Has been cancelled

This commit is contained in:
Tsuki 2026-01-08 01:43:46 +08:00
parent 7f44e21156
commit 498b9a62d4
3 changed files with 17 additions and 5 deletions

View File

@ -1,11 +1,26 @@
[project]
name = "rbufrp"
version = "0.1.0"
description = "Add your description here"
description = "Fast BUFR (Binary Universal Form for the Representation of meteorological data) decoder written in Rust"
readme = "README.md"
authors = [{ name = "Tsuki", email = "qwin7989@gmail.com" }]
requires-python = ">=3.11"
requires-python = ">=3.8"
dependencies = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Rust",
]
keywords = ["bufr", "meteorology", "weather", "decoder"]
[project.scripts]
rbufrp = "rbufrp:main"

View File

@ -3,7 +3,6 @@ rbufrp - BUFR (Binary Universal Form for the Representation of meteorological da
"""
import os
import sys
from pathlib import Path
from typing import Optional

View File

@ -4,8 +4,6 @@ Type stubs for rbufrp._core
This file provides type hints for the Rust extension module.
"""
from typing import Optional
class BUFRDecoder:
"""BUFR decoder for parsing BUFR files."""