-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 1.9 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "statmake"
dynamic = ["version"]
description = "Applies STAT information from a Stylespace to a variable font."
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Nikolaus Waxweiler", email = "nikolaus.waxweiler@daltonmaag.com" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["attrs >= 21.3", "cattrs >= 22.2", "fonttools[ufo] >= 4.11"]
[project.urls]
Homepage = "https://github.com/daltonmaag/statmake"
[project.scripts]
statmake = "statmake.cli:main"
[dependency-groups]
dev = [
"mypy",
"pytest >= 8",
"pytest-cov >= 5",
"ruff >= 0.9",
"ufo2ft >= 2.7",
"ufoLib2 >= 0.4",
]
[tool.hatch.version]
source = "vcs"
[tool.mypy]
python_version = "3.8"
platform = "linux"
disallow_incomplete_defs = true
disallow_untyped_defs = true
no_implicit_optional = true
strict_equality = true
strict_optional = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = "tests.*"
disallow_untyped_defs = false
[[tool.mypy.overrides]]
module = [
"fontTools.*",
"ufo2ft",
"ufoLib2",
"pytest",
"testutil",
"importlib_metadata",
"exceptiongroup",
"tomli",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:fs",
"ignore::DeprecationWarning:pkg_resources",
]