Path: blob/main/py-polars/runtime/template/pyproject.toml
7884 views
[build-system]1requires = ["maturin>=1.3.2"]2build-backend = "maturin"34[project]5name = "polars-runtime-{{%RT_SUFFIX%}}"6description = "Blazingly fast DataFrame library"7readme = "README.md"8authors = [9{ name = "Ritchie Vink", email = "[email protected]" },10]11license = { file = "LICENSE" }12requires-python = ">=3.9"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.9",25"Programming Language :: Python :: 3.10",26"Programming Language :: Python :: 3.11",27"Programming Language :: Python :: 3.12",28"Programming Language :: Python :: 3.13",29"Programming Language :: Rust",30"Topic :: Scientific/Engineering",31"Typing :: Typed",32]33dynamic = ["version"]3435[project.urls]36Homepage = "https://www.pola.rs/"37Documentation = "https://docs.pola.rs/api/python/stable/reference/index.html"38Repository = "https://github.com/pola-rs/polars"39Changelog = "https://github.com/pola-rs/polars/releases"4041[tool.maturin]42include = [43{ path = "rust-toolchain.toml", format = "sdist" },44{ path = "_polars_runtime_{{%RT_SUFFIX%}}/build_feature_flags.py", format = ["sdist", "wheel"] },45]46module-name = "_polars_runtime_{{%RT_SUFFIX%}}._polars_runtime"474849