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