-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
[project]
name = "fontconfig-py"
dynamic = ["version"]
description = "Python bindings to fontconfig"
authors = [
{name = "CyberAgent, Inc.", email = "yamaguchi_kota@cyberagent.co.jp"}
]
license = "MIT AND FTL"
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = []
keywords = ["fontconfig", "fonts", "typography", "freetype", "font-matching"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Fonts",
"Topic :: Multimedia :: Graphics",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Cython",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/kyamagu/fontconfig-py"
Documentation = "https://fontconfig-py.readthedocs.io"
[build-system]
requires = ["setuptools>=82.0.1", "cython>=3.2.4", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["fontconfig*"]
[tool.setuptools.dynamic]
version = {attr = "fontconfig.__version__"}
[tool.setuptools.package-data]
fontconfig = ["py.typed", "*.pyi"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"ruff>=0.15.12",
"mypy>=1.20.2",
]
docs = [
"sphinx>=8.1.3",
"sphinx-rtd-theme>=3.1.0"
]