forked from tobymao/sqlglot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 637 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 637 Bytes
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
from setuptools import setup
setup(
extras_require={
"dev": [
"duckdb>=0.6",
"mypy",
"pandas",
"pandas-stubs",
"python-dateutil",
"pytz",
"pdoc",
"pre-commit",
"ruff==0.15.6",
"types-python-dateutil",
"types-pytz",
"typing_extensions",
"pyperf",
],
# Compiles from source on the user's machine.
"c": ["sqlglotc"],
# Deprecated: the Rust tokenizer has been replaced by sqlglotc.
"rs": ["sqlglotrs==0.13.0", "sqlglotc"],
},
)