forked from googlefonts/fontra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
82 lines (64 loc) · 1.9 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
80
81
82
[project]
name = "fontra"
description = "A browser-based font editor"
readme = "README.md"
authors = [
{ name = "Just van Rossum", email = "[email protected]" }
]
keywords = ["font", "fonts"]
license = {text = "GNU General Public License v3"}
dependencies = [
"aiohttp>=3.8.1",
"fonttools[ufo,unicode]>=4.37.2",
"watchfiles>=0.10",
]
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 = "fontra.__main__:main"
[project.entry-points."fontra.views"]
editor = "fontra.views.editor"
[project.entry-points."fontra.projectmanagers"]
filesystem = "fontra.filesystem.projectmanager:FileSystemProjectManagerFactory"
[project.entry-points."fontra.webcontent"]
filesystem = "fontra.filesystem"
[project.entry-points."fontra.filesystem.backends"]
designspace = "fontra.backends.designspace:DesignspaceBackend"
ufo = "fontra.backends.designspace:UFOBackend"
ttf = "fontra.backends.truetype:TTFBackend"
otf = "fontra.backends.truetype:TTFBackend"
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
fontra = [
"*.html",
"*.ico",
"*.css",
"*.html",
"*.js",
"*.svg",
"*.woff2",
]
[tool.setuptools_scm]
write_to = "src/fontra/_version.py"
[tool.pytest.ini_options]
testpaths = [
"test-py",
]
asyncio_mode = "auto"