-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
43 lines (37 loc) · 1.14 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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "sqlgpt-parser"
version = "0.0.1a5"
authors = [
{ name="luliwjc", email="[email protected]" },
{ name="Ifffff", email="[email protected]" },
{ name="tomato", email="[email protected]" },
]
description = "A sql parser which support mysql, oceanbase and odps"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"ply == 3.11",
]
[project.urls]
"Homepage" = "https://github.com/eosphoros-ai/sqlgpt-parser"
"Bug Tracker" = "https://github.com/eosphoros-ai/sqlgpt-parser/issues"
[tool.ruff]
select = ["F"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
line-length=120
[tool.black]
skip-string-normalization = 1
force-exclude = '''
sqlgpt_parser/parser/mysql_parser/parser_table.py
| sqlgpt_parser/parser/oceanbase_parser/parser_table.py
| sqlgpt_parser/parser/odps_parser/parser_table.py
'''