-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
43 lines (39 loc) · 1.27 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["maturin>=1.2.1,<2"]
build-backend = "maturin"
[project]
name = "polars-cli"
description = "CLI interface for running SQL queries with Polars as backend"
readme = "README.md"
authors = [
{ name = "Ritchie Vink", email = "[email protected]" },
]
license = { file = "LICENSE" }
requires-python = ">=3.8"
keywords = ["dataframe", "arrow", "out-of-core", "sql"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://www.pola.rs/"
Documentation = "https://github.com/pola-rs/polars-cli"
Repository = "https://github.com/pola-rs/polars-cli"
Changelog = "https://github.com/pola-rs/polars-cli/releases"
[tool.maturin]
bindings = "bin"
python-source = "python"
module-name = "polars-cli"
strip = true