-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (55 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
60 lines (55 loc) · 2.05 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "drawbot-proofing"
version = "1.0.5"
description = "A collection of font proofing tools using DrawBot"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Adobe", email = "opensource@adobe.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Text Processing :: Fonts",
"Topic :: Multimedia :: Graphics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"defcon",
"drawbot @ git+https://github.com/typemytype/drawbot",
"fonttools",
"fontParts",
"unicodedataplus",
]
[project.urls]
Homepage = "https://github.com/adobe-type-tools/drawBotProofing"
Repository = "https://github.com/adobe-type-tools/drawBotProofing"
Issues = "https://github.com/adobe-type-tools/drawBotProofing/issues"
[project.scripts]
# Font proofing tools
text-proof = "drawbot_proofing.textProof:main"
alphabet-proof = "drawbot_proofing.alphabetProof:main"
charset-proof = "drawbot_proofing.charsetProof:main"
context-proof = "drawbot_proofing.contextProof:main"
glyph-proof = "drawbot_proofing.glyphProof:main"
glyphset-proof = "drawbot_proofing.glyphsetProof:main"
reference-proof = "drawbot_proofing.referenceProof:main"
unicode-chart-proof = "drawbot_proofing.unicodeChartProof:main"
vertical-metrics-proof = "drawbot_proofing.verticalMetricsProof:main"
vertical-metrics-comparison-proof = "drawbot_proofing.verticalMetricsComparisonProof:main"
waterfall-proof = "drawbot_proofing.waterfallProof:main"
accent-proof = "drawbot_proofing.accentProof:main"
figure-spacing-proof = "drawbot_proofing.figureSpacingProof:main"
overlay-proof = "drawbot_proofing.overlayProof:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["drawbot_proofing*"]
[tool.setuptools.package-data]
"drawbot_proofing" = ["_content/**/*", "_fonts/*"]