forked from googlefonts/shaperglot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (51 loc) · 1.56 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
[tool.poetry]
name = "shaperglot"
version = "0.0"
description = "Test font files for OpenType language support"
license = "MIT"
authors = ["Simon Cozens <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/shaperglot"
documentation = "https://shaperglot.readthedocs.io"
repository = "https://github.com/simoncozens/shaperglot"
keywords = [
]
classifiers = [
# TODO: update this list to match your application: https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = ">= 3.7"
gflanguages = { git = "https://github.com/googlefonts/lang" }
termcolor = "1.1.0"
vharfbuzz = "^0"
strictyaml = "*"
num2words = "^0.5"
ufo2ft = "*"
youseedee = "*"
protobuf = "3.19.4"
[tool.poetry.dev-dependencies]
# Formatters
pylint = "~2.6.0"
pytest = "^5.3.2"
[tool.poetry.scripts]
shaperglot = "shaperglot.cli:main"
[tool.black]
target-version = ["py36", "py37", "py38"]
skip-string-normalization = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint."messages control"]
good-names = [
"fh",
"e",
"ix",
]
disable=["broad-except", "missing-module-docstring", "no-self-use", "too-many-instance-attributes", "missing-function-docstring", "missing-class-docstring", "duplicate-code","too-many-branches"]
max-line-length=120