-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.36 KB
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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PowerText"
authors = [
{ name="校溯", email="xiaosu@xiaosu.icu" }
]
description = "A text renderer for Pillow that supports emojis, multiple fonts, automatic line wrapping, and automatic text truncation."
readme = "README.md"
version = "0.7.1"
requires-python = ">=3.10"
license = "MPL-2.0"
license-files = ["LICENSE"]
keywords = ["text renderer", "emoji", "image-processing", "pillow"]
classifiers = [
# Development Status
"Development Status :: 4 - Beta", # Beta is perfect for a 0.x.y release
# Supported Python Versions
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
# Operating System
"Operating System :: OS Independent",
# Intended Audience & Topic
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Pillow>=8.0",
"fonttools>=4.25"
]
[project.urls]
Homepage = "https://github.com/xiaosuyyds/PowerText/"
[tool.setuptools]
package-dir = { "" = "src" }
packages = ["power_text"]
[tool.setuptools.package-data]
power_text = ["*.md"]