Path: blob/main/py-polars/runtime/polars-runtime-compat/pyproject.toml
8422 views
[build-system]1requires = ["maturin>=1.3.2"]2build-backend = "maturin"34[project]5name = "polars-runtime-compat"6description = "Blazingly fast DataFrame library"7readme = "README.md"8authors = [9{ name = "Ritchie Vink", email = "[email protected]" },10]11license = { file = "LICENSE" }12requires-python = ">=3.10"1314keywords = ["dataframe", "arrow", "out-of-core"]15classifiers = [16"Development Status :: 5 - Production/Stable",17"Environment :: Console",18"Intended Audience :: Science/Research",19"License :: OSI Approved :: MIT License",20"Operating System :: OS Independent",21"Programming Language :: Python",22"Programming Language :: Python :: 3",23"Programming Language :: Python :: 3 :: Only",24"Programming Language :: Python :: 3.10",25"Programming Language :: Python :: 3.11",26"Programming Language :: Python :: 3.12",27"Programming Language :: Python :: 3.13",28"Programming Language :: Rust",29"Topic :: Scientific/Engineering",30"Typing :: Typed",31]32dynamic = ["version"]3334[project.urls]35Homepage = "https://www.pola.rs/"36Documentation = "https://docs.pola.rs/api/python/stable/reference/index.html"37Repository = "https://github.com/pola-rs/polars"38Changelog = "https://github.com/pola-rs/polars/releases"3940[tool.maturin]41include = [42{ path = "rust-toolchain.toml", format = "sdist" },43{ path = "_polars_runtime_compat/build_feature_flags.py", format = ["sdist", "wheel"] },44]45module-name = "_polars_runtime_compat._polars_runtime"464748