-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
76 lines (64 loc) · 1.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ['setuptools', 'setuptools-scm', 'wheel']
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "post-release"
[project]
name = "pytsql"
description = "`Pytsql` allows to run mssql sripts, typically run via GUIs, via CLI."
authors = [
{ name = "Alex Gonopolskiy", email = "[email protected]" },
{ name = "Kevin Klein", email = "[email protected]" },
{ name = "Encho Mishinev", email = "[email protected]" },
{ name = "Sven Giegerich", email = "[email protected]" },
]
maintainers = [{ name = "Kevin Klein", email = "[email protected]" }]
keywords = ["sql", "mssql", "databases", "automation", "parametrization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database",
]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = [
"sqlalchemy >=1.4,<3",
"antlr4-python3-runtime >=4.10,<4.14",
"pyodbc >=4.0.30",
"click",
]
[project.urls]
Source = "https://github.com/quantco/pytsql"
[[tool.mypy.overrides]]
module = "pytsql.grammar.*"
follow_imports = "silent"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = ["E501", "N803", "N806"]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pep8-naming
"N",
# pyupgrade
"UP",
]
exclude = ["src/pytsql/grammar/**/*.py"]
[tool.typos.default.extend-words]
hax = "hax"
[tool.ruff.lint.isort]
known-first-party = ["pytsql"]