-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (48 loc) · 1.09 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
[project]
name = "monobit"
version = "0.48.0"
authors = [
{ name = "Rob Hagemans", email = "rob.hagemans@hotmail.com" },
]
description = "Tools for working with monochrome bitmap fonts."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"reportlab",
"pillow",
"python-bidi",
"arabic-reshaper",
"uniseg",
"fonttools",
"libarchive-c",
"ncompress",
"acefile"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
]
keywords = [
"font", "retro", "bitfont", "bitmap-font", "pixel-font", "8-bit"
]
[project.urls]
"Homepage" = "https://github.com/robhagemans/monobit"
[project.scripts]
monobit-convert = "monobit.scripts.convert:main"
monobit-banner = "monobit.scripts.banner:main"
[build-system]
requires = [
"hatchling",
]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
include = [
"/monobit",
"convert.py",
"explore.py",
"banner.py",
"/*.md",
]