-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hyperglot"
dynamic = ["version"]
requires-python = ">3.10.0"
description = "Detect language support for font binaries"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Johannes Neumeier - Rosetta", email = "johannes@rosettatype.com" }
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Topic :: Text Processing :: Fonts",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"packaging>=26.0",
"click>=7.0",
"fonttools>=4.50.0",
"uharfbuzz>=0.39.0",
"pyyaml>=6.0.0",
"colorlog>=6.4.1",
]
[project.optional-dependencies]
dev = ["pytest", "tox"]
build = ["build", "twine"]
[project.urls]
Homepage = "https://github.com/rosettatype/hyperglot"
"Hyperglot web interface" = "https://hyperglot.rosettatype.com"
[project.scripts]
hyperglot = "hyperglot.cli:cli"
hyperglot-report = "hyperglot.cli:report"
hyperglot-data = "hyperglot.cli:data"
hyperglot-validate = "hyperglot.validate:validate"
hyperglot-save = "hyperglot.cli:save_sorted"
hyperglot-export = "hyperglot.cli:export"
[tool.setuptools]
package-dir = {"" = "lib"}
packages = ["hyperglot", "hyperglot.checks"]
[tool.setuptools.dynamic]
version = {attr = "hyperglot.__version__"}
[tool.setuptools.package-data]
hyperglot = ["data/*.yaml", "extra_data/*"]