-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.42 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
[project]
authors = [{ name = "Bean", email = "[email protected]" }]
dependencies = [
"black (>=24.10.0,<25.0.0)",
"fastapi (>=0.115.6,<0.116.0)",
"fonttools (>=4.55.3,<5.0.0)",
"freetype-py (>=2.5.1,<3.0.0)",
"python-multipart (>=0.0.20,<0.0.21)",
"requests (>=2.32.3,<3.0.0)",
"svgpathtools (>=1.6.1,<2.0.0)",
"uvicorn (>=0.34.0,<0.35.0)",
"yuanfen (>=2025.1.9.2,<2026.0.0.0)",
]
description = "Font2svg server-side project, written in Python."
license = { text = "MIT" }
name = "font2svg-api"
readme = "README.md"
requires-python = ">=3.13"
version = "0.1.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=2.0.1,<3.0.0"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 180
[tool.poetry]
package-mode = false
[tool.semantic_release]
commit_author = "Bean <[email protected]>"
commit_message = "chore(release): v{version}"
commit_parser = "angular"
tag_format = "v{version}"
version_variables = ["src/__init__.py:__version__"]
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"style",
"test",
]
minor_tags = ["feat"]
patch_tags = ["build", "fix", "perf", "refactor"]