-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.44 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
[project]
name = "python-backpack"
dynamic = ["version"]
description = "Lightweight utilities for JSON, filesystem operations, strings, caching, and scripting."
readme = { file = "README.md", content-type = "text/markdown" }
license = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Maximiliano Rocamora", email = "maxirocamora@gmail.com" }
]
keywords = ["cache", "filesystem", "json", "strings", "utilities"]
requires-python = ">=3.11"
dependencies = []
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/MaxRocamora/python-backpack"
Repository = "https://github.com/MaxRocamora/python-backpack.git"
[dependency-groups]
dev = [
"coverage>=7.14.0",
"ruff>=0.15.12",
"mock>=5.2.0",
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"pyright>=1.1.411",
]
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["backpack"]
[tool.hatch.version]
path = "backpack/version.py"
[tool.pytest.ini_options]
addopts = "-p no:cacheprovider"
testpaths = ["tests"]