-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.37 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
[project]
name = "ugrapheme"
version = "0.8"
authors = [{name = "!ZAJC!"}]
readme = "README.md"
description = "Unicode 16.0 Extended grapheme clusters in nanoseconds"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zero-Clause BSD (0BSD)",
"Programming Language :: Python :: 3",
"Programming Language :: Cython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Text Processing",
"Topic :: Terminals",
"Topic :: Utilities"
]
dependencies = ["uwcwidth"]
[project.optional-dependencies]
test = ["pytest"]
[project.urls]
"Homepage" = "https://github.com/Z4JC/ugrapheme"
[build-system]
requires = ["setuptools", "wheel", "Cython", "uwcwidth"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["ugrapheme", "ugrapheme.tables"]
exclude = []
namespaces = false
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]
[tool.cibuildwheel]
build-frontend = "build"
test-command = """
cd $( mktemp -d ) \
&& cp -pr {project}/* ./ \
&& rm -rf ugrapheme \
&& pytest
"""
test-requires = "pytest"
skip = ["cp36-*", "cp37-*", "pp*"]