File: pyproject.toml

package info (click to toggle)
vharfbuzz 0.3.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 265; makefile: 76
file content (48 lines) | stat: -rw-r--r-- 986 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=8.1"]
build-backend = "setuptools.build_meta"

[project]
name = "vharfbuzz"
description = "A user-friendlier way to use Harfbuzz in Python"
license = {file = "LICENSE"}
readme = "README.md"
dynamic = ["version"]
authors = [
  { name = "Simon Cozens", email = "simon@simon-cozens.org" }
]
classifiers = [
  'Environment :: Console',
  'Topic :: Text Processing :: Fonts',
]
dependencies = [
  'uharfbuzz>=0.34.0',
  'fontTools'
]

[project.urls]
Repository = "https://github.com/simoncozens/vharfbuzz"
Issues = "https://github.com/simoncozens/vharfbuzz/issues"

[project.optional-dependencies]
dev = [
    "pytest",
    "black",
]

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

[tool.setuptools_scm]
write_to = "Lib/vharfbuzz/_version.py"
git_describe_command = "git describe --match 'v*'"

[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]

[tool.black]
exclude = '''
(
    _version.py
)
'''