-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 889 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
[project]
name = "gloomy"
description = "glom, but not as slow"
version = "0.2.4"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
]
dependencies = []
[dependency-groups]
dev = [
"glom>=24.11.0",
"pytest-benchmark[histogram]>=5.1.0",
"pytest>=8.3.4",
"ruff>=0.9.9",
"mypy>=1.15.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = [
"-s",
"--benchmark-warmup-iterations=100_000",
"--benchmark-group-by=func",
]
[tool.ruff]
line-length = 120
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"