-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
79 lines (59 loc) · 1.85 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
74
75
76
77
78
79
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fontra-rcjk"
description = "A plugin for Fontra, supporting the rcjk file format and the django-robocjk web api"
readme = "README.md"
authors = [
{ name = "Just van Rossum", email = "[email protected]" }
]
keywords = ["font", "fonts"]
license = {text = "GNU General Public License v3"}
dependencies = ["fontra"]
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.entry-points."fontra.projectmanagers"]
rcjk = "fontra_rcjk.projectmanager:RCJKProjectManagerFactory"
[project.entry-points."fontra.webcontent"]
rcjk = "fontra_rcjk"
[project.entry-points."fontra.filesystem.backends"]
rcjk = "fontra_rcjk.backend_fs:RCJKBackend"
[tool.hatch.build.targets.wheel]
packages = ["src/fontra_rcjk"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/fontra_rcjk/_version.py"
[tool.pytest.ini_options]
testpaths = [
"tests",
]
asyncio_mode = "auto"
[[tool.mypy.overrides]]
module = "fontTools.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "glyphsLib.glyphdata"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "urllib3"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "requests"
ignore_missing_imports = true