Adding upstream version 20.3.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
5bd573dda1
commit
fd9de5e4cb
132 changed files with 55125 additions and 51576 deletions
11
setup.py
11
setup.py
|
@ -1,5 +1,14 @@
|
|||
from setuptools import find_packages, setup
|
||||
|
||||
|
||||
def sqlglotrs_version():
|
||||
with open("sqlglotrs/Cargo.toml") as fd:
|
||||
for line in fd.readlines():
|
||||
if line.strip().startswith("version"):
|
||||
return line.split("=")[1].strip().strip('"')
|
||||
raise ValueError("Could not find version in Cargo.toml")
|
||||
|
||||
|
||||
setup(
|
||||
name="sqlglot",
|
||||
description="An easily customizable SQL parser and transpiler",
|
||||
|
@ -31,7 +40,9 @@ setup(
|
|||
"pdoc",
|
||||
"pre-commit",
|
||||
"types-python-dateutil",
|
||||
"maturin>=1.4,<2.0",
|
||||
],
|
||||
"rs": [f"sqlglotrs=={sqlglotrs_version()}"],
|
||||
},
|
||||
classifiers=[
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue