-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.55 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
[project]
name = "tattl"
dynamic = ["version"]
description = "Totally Awesome Type-aware TOML Loader"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "thcrt", email = "110127860+thcrt@users.noreply.github.com" }]
requires-python = ">=3.12"
dependencies = []
keywords = [
"toml",
"yaml",
"configuration",
"config",
"settings",
"typing",
"dataclass",
"validation",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: File Formats",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing",
"Typing :: Typed",
]
[project.urls]
Source = "https://github.com/thcrt/tattl"
Issues = "https://github.com/thcrt/tattl/issues"
PyPI = "https://pypi.org/project/tattl/"
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"furo>=2024.8.6",
"mypy>=1.13.0",
"pytest>=8.3.4",
"ruff>=0.8.2",
"sphinx-autobuild>=2024.10.3",
"sphinx>=8.1.3",
"sphinx-paramlinks>=0.6.0",
"sphinx-multiversion>=0.2.4",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/tattl/_version.py"
[tool.mypy]
packages = "tattl"
strict = true
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib"]