-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (72 loc) · 1.88 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (72 loc) · 1.88 KB
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
77
78
79
80
81
82
[project]
name = "persistedstate"
version = "26.1"
description = "Ultra fast persistent store for small states in mapped YAML file"
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = ["pyyaml"]
[dependency-groups]
dev = [
"black",
"mypy",
"pylint",
"scripthelper",
"tox",
"tox-uv>=1.25",
"types-PyYAML",
"pytest"
]
perftest = [
"diskcache",
"lmdbm",
"sqlitedict",
]
[[project.authors]]
name = "Máté Farkas"
email = "fm@farkas-mate.hu"
[project.urls]
Homepage = "https://github.com/presidento/persistedstate"
Changelog = "https://github.com/presidento/persistedstate/blob/main/CHANGELOG.md"
[build-system]
requires = ["uv_build>=0.9.10,<0.10.0"]
build-backend = "uv_build"
[tool.tox]
env_list = ["py314", "py313", "py312", "py311", "py310"]
[tool.tox.env_run_base]
commands = [["pytest"]]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
[[tool.mypy.overrides]]
module = "persistedstate"
disable_error_code = ["override", "attr-defined"]
[tool.pylint.main]
disable = [
"attribute-defined-outside-init",
"consider-using-with",
"format",
"invalid-name",
"logging-fstring-interpolation",
"logging-not-lazy",
"missing-docstring",
"no-member",
"protected-access",
]