generated from NathanVaughn/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.71 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
[project]
name = "simple-file-settings"
version = "0.1.6"
description = "Easily load and save simple configuration data to and from disk through a type-checked data class."
readme = "README.md"
authors = [{ name = "Nathan Vaughn", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.9"
dependencies = ["typeguard>=4.2.1"]
[dependency-groups]
dev = ["pre-commit>=3.2.0", "pytest>=8.3.3", "pytest-cov>=5.0.0"]
[project.optional-dependencies]
yaml = ["pyyaml>=6.0.1"]
json5 = ["pyjson5>=1.6.6"]
toml = ["tomli>=2.0.1;python_version<'3.11'", "tomli-w>=1.0.0"]
[project.urls]
Homepage = "https://github.com/NathanVaughn/simple-file-settings"
Repository = "https://github.com/NathanVaughn/simple-file-settings.git"
Issues = "https://github.com/NathanVaughn/simple-file-settings/issues"
[tool.uv]
package = true
[tool.coverage.run]
omit = ["tests/*"]
[tool.pyright]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
reportMissingParameterType = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
# fixing this would break import compatibility
packages = ["simplefilesettings"]