File: pyproject.toml

package info (click to toggle)
ufo2ft 3.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,528 kB
  • sloc: python: 18,685; makefile: 10
file content (115 lines) | stat: -rw-r--r-- 2,514 bytes parent folder | download
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
build-backend = "setuptools.build_meta"
requires = [
    "setuptools>=61.2",
    "setuptools_scm",
]

[project]
authors = [
    { email = "tal@typesupply.com", name = "Tal Leming" },
    { name = "James Godfrey-Kittle" },
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Environment :: Console",
    "Environment :: Other Environment",
    "Intended Audience :: Developers",
    "Intended Audience :: End Users/Desktop",
    "Natural Language :: English",
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "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",
    "Topic :: Multimedia :: Graphics",
    "Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
    "Topic :: Multimedia :: Graphics :: Graphics Conversion",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
    "booleanoperations>=0.9.0",
    "cffsubr>=0.3.0",
    "fontmath>=0.9.4",
    "fonttools[ufo]>=4.61.1",
]
description = "A bridge between UFOs and FontTools."
dynamic = [
    "version",
]
license = "MIT"
license-files = [
    "LICENSE",
]
maintainers = [
    { email = "cosimo@anthrotype.com", name = "Cosimo Lupo" },
]
name = "ufo2ft"
requires-python = ">=3.10"

[project.optional-dependencies]
compreffor = [
    "compreffor>=0.5.6",
]
# keep empty for backward compat
cffsubr = []
dev = [
    "black",
    "coverage",
    "flake8-bugbear",
    "isort",
    "pytest",
    "syrupy",
]
pathops = [
    "skia-pathops>=0.8.0",
]
test = [
    "pytest",
    "syrupy",
]

[project.readme]
content-type = "text/x-rst"
file = "README.rst"

[project.urls]
Homepage = "https://github.com/googlefonts/ufo2ft"

[tool.aliases]
test = "pytest"

[tool.pytest.ini_options]
addopts = "-r a"
filterwarnings = [
    "ignore:.*bytes:DeprecationWarning:fs.base",
    "ignore::DeprecationWarning:fs",
    "ignore::DeprecationWarning:pkg_resources",
    "ignore:fromstring:DeprecationWarning",
    "ignore:tostring:DeprecationWarning",
]
minversion = "2.8"
python_classes = [
    "*Test",
]
testpaths = [
    "tests",
]

[tool.setuptools]
include-package-data = true

[tool.setuptools.package-dir]
"" = "Lib"

[tool.setuptools.packages.find]
where = ["Lib"]
namespaces = false

[tool.setuptools_scm]

[tool.wheel]
universal = "1"