-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 971 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 971 Bytes
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
[build-system]
requires = ["setuptools>=60", "wheel", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "webgpu_fonts"
dynamic = ["version"]
description = "MSDF Font files for webgpu package"
authors = [
{ name = "Matthias Hochsteger", email = "mhochsteger@cerbsim.com" },
{ name = "Christopher Lackner", email = "clackner@cerbsim.com" },
]
license = "LGPL-2.1-or-later"
keywords = ["webgpu", "font", "msdf", "computes graphics"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
[tool.setuptools_scm]
version_file = "webgpu_fonts/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.package-data]
"webgpu_fonts" = ["fonts/*.bin"]
[tool.isort]
profile = "black"
src_paths = ["webgpu_fonts"]
skip_glob = ["**/_version.py"]
[tool.black]
line-length = 100
target-version = ['py310']
include = '\.pyi?$'