aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: bcfcdc19f2312fcf4f69dd261848808f419d0c8c (plain) (blame)
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
# SPDX-FileCopyrightText: 2024 Kristóf Marussy <kristof@marussy.com>
#
# SPDX-License-Identifier: MIT

[tool.poetry]
package-mode = false
name = "marussy-com"
version = "0.0.0"
description = "Personal website of Kristóf Marussy"
authors = ["Kristóf Marussy <kristof@marussy.com>"]
license = "MIT"
readme = "README.md"

[tool.poetry.scripts]
subset-fonts = "scripts.subset_fonts:main"

[tool.poetry.dependencies]
python = "^3.11"
brotli = "^1.1.0"
uharfbuzz = "^0.39.1"
fonttools = "^4.50.0"
tqdm = "^4.66.2"
jinja2 = "^3.1.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"