-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (32 loc) · 940 Bytes
/
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
[project]
name = "pqg"
version = "0.3.2"
description = "A synthetic pandas query generation tool"
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["pandas>=2.2.0", "tqdm>=4.66.2"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
pqg = "pqg.__main__:main"
[project.urls]
Homepage = "https://github.com/DISLMcGill/pandas-query-generator"
Issues = "https://github.com/DISLMcGill/pandas-query-generator/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/pqg"]
[tool.hatch.build.targets.sdist]
include = ["/src", "/tests"]
[tool.ruff]
src = ["src"]
indent-width = 2
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 20
indent-style = "space"
quote-style = "single"
[tool.uv]
dev-dependencies = ["genson>=1.3.0", "pytest-mock>=3.14.0", "pytest>=8.3.3", "ruff>=0.7.3", "sphinx>=8.1.3"]