1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where =["Lib"]
[project]
name = "notobuilder"
dynamic = ["version"]
description = "A build system for Noto fonts"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
{ name = "Simon Cozens", email = "simon@simon-cozens.org" },
]
dependencies = [
"fonttools>=4.51.0, != 4.52.1, != 4.52.2, != 4.52.3, != 4.52.4",
"fontmake>=3.3",
"glyphsLib>=6.0.7",
"ttfautohint-py",
"ufo2ft>=2.27.0",
"sh>=1.14.1",
]
|