-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.29 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
[build-system]
requires = ["setuptools>=77.0.3", "cython==3.2.4"]
build-backend = "setuptools.build_meta"
[project]
name = "pytaglib"
version = "3.2.0"
requires-python = ">=3.10"
description = "cross-platform, Python audio metadata (\"tagging\") library based on TagLib"
authors = [
{ name = "Michael Helmling", email = "michaelhelmling@posteo.de" }
]
readme = "README.md"
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules", ]
[project.urls]
Repository = "https://github.com/supermihi/pytaglib"
Issues = "https://github.com/supermihi/pytaglib/issues"
Changelog = "https://github.com/supermihi/pytaglib/blob/main/CHANGELOG.md"
[project.optional-dependencies]
tests = ["pytest>=8.1.1,<8.5.0"]
[project.scripts]
pyprinttags = "pyprinttags:script"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.cibuildwheel]
test-extras = ["tests"]
test-command = "pytest {project}/tests"
before-build = "python build_native_taglib.py"
skip = "cp38-* cp39-*"
enable = ["pypy"]