-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (46 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sql-judge-utils"
dynamic = ["version"]
description = "Utilities for writing tests for Quera SQL judge."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Quera", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
]
requires-python = ">=3.9"
dependencies = [
"mysql-connector-python>=8.0.25",
"psycopg2-binary>=2.9.1",
]
[project.urls]
Homepage = "https://github.com/QueraTeam/sql-judge-utils"
[tool.hatch.version]
path = "sql_judge_utils/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/sql_judge_utils",
]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.9", "3.13"]
[tool.black]
line-length = 120
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 120
skip_gitignore = true
[tool.autoflake]
in-place = true
expand-star-imports = true
remove-duplicate-keys = true
remove-unused-variables = true
remove-all-unused-imports = true