Files

40 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2026-07-29 14:30:43 +08:00
[project]
name = "sarasacw-omrf-packer"
2026-08-05 10:45:51 +08:00
version = "1.0.0"
2026-08-06 13:47:05 +08:00
description = "The packer for Rust, specifically designed for the SarasaCW OMRF project, to distribute C-friendly FFI dynamic library as CMake package."
2026-07-29 14:30:43 +08:00
readme = "README.md"
2026-08-01 22:31:39 +08:00
authors = [
{ name = "yyc12345", email = "yyc12321@outlook.com" }
]
2026-07-29 14:30:43 +08:00
requires-python = ">=3.13"
2026-08-06 13:47:05 +08:00
license = { text = "MIT" }
keywords = ["rust", "ffi", "cmake", "pkg-config", "packaging", "omrf"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
2026-07-29 14:30:43 +08:00
dependencies = [
"jinja2==3.1.6",
2026-08-03 11:10:44 +08:00
"semver>=3.0.4",
2026-07-29 14:30:43 +08:00
]
2026-08-01 22:31:39 +08:00
[project.scripts]
sarasacw-omrf-packer = "sarasacw_omrf_packer:main"
2026-08-06 13:47:05 +08:00
[project.urls]
Homepage = "https://github.com/SarasasChipWorkshop/sarasacw-omrf"
Repository = "https://github.com/SarasasChipWorkshop/sarasacw-omrf"
Issues = "https://github.com/SarasasChipWorkshop/sarasacw-omrf/issues"
2026-08-01 22:31:39 +08:00
[build-system]
requires = ["uv_build>=0.8.0,<0.9"]
build-backend = "uv_build"