-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (56 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fontra-compile"
description = "An experimental font compiler for Fontra"
readme = "README.md"
authors = [
{ name = "Just van Rossum", email = "[email protected]" }
]
keywords = ["font", "fonts"]
license = {text = "GNU General Public License v3"}
dependencies = ["fontra", "fontmake", "fontc", "cffsubr"]
dynamic = ["version"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Other Environment",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
]
[project.scripts]
fontra-compile = "fontra_compile.__main__:main"
[project.entry-points."fontra.workflow.actions"]
compile_varc = "fontra_compile.compile_varc_action"
compile_fontmake = "fontra_compile.compile_fontmake_action"
compile_fontc = "fontra_compile.compile_fontc_action"
[tool.hatch.build.targets.wheel]
packages = ["src/fontra_compile"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/fontra_compile/_version.py"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_mode = "auto"
[[tool.mypy.overrides]]
module = "fontTools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "fontmake.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "cffsubr.*"
ignore_missing_imports = true