summaryrefslogtreecommitdiffstats
path: root/sqlglotrs/pyproject.toml
blob: d84ee91e7fc92bbf4ca55a8ae2f04ca32efedce8 (plain)
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
[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"

[project]
name = "sqlglotrs"
description = "An easily customizable SQL parser and transpiler"
requires-python = ">=3.7"
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
    "License :: OSI Approved :: MIT License",
]
authors = [
  { name="Toby Mao", email="toby.mao@gmail.com" },
]
dynamic = ["version"]

[project.urls]
Homepage = "https://github.com/tobymao/sqlglot"
Issues = "https://github.com/tobymao/sqlglot/issues"

[tool.maturin]
features = ["pyo3/extension-module"]