-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dirs.env]
virtual = ".direnv"
[project]
name = "santlipi"
version = "0.30.0"
description = "A unicode font for extraordinary Gurmukhi"
readme = "README.md"
requires-python = ">=3.8"
license = "OFL-1.1-RFN"
authors = [
{ name="Bhajneet S.K.", email="[email protected]"},
]
dependencies = [
"chevron>=0.14.0",
"fontmake>=3.5.1",
"fonttools[woff]>=4.38.0",
]
[project.scripts]
make = "scripts.make:main"
var = "scripts.make:var"
qa = "scripts.qa:main"
build = "scripts.build:main"
[tool.hatch.build.targets.wheel]
packages = ["scripts"]
[tool.hatch.envs.dev]
detached = true
dependencies = [
"black",
"isort",
]
[tool.hatch.envs.dev.scripts]
fmt = [
"isort .",
"black scripts",
]
[tool.isort]
known_first_party = "scripts"
profile = "black"
src_paths = ["scripts"]
filter_files = true
[tool.black]
line-length = 88
[tool.mypy]
disallow_any_decorated = true
disallow_any_explicit = true
disallow_any_expr = true
disallow_any_unimported = true
no_implicit_reexport = true
pretty = true
show_error_codes = true
strict = true
warn_unreachable = true