mirror of
https://github.com/iluvcapra/wavinfo.git
synced 2025-12-31 08:50:41 +00:00
Initial work on uv build system
Moved module into src/ and modernized pyproject.toml
This commit is contained in:
@@ -1,16 +1,15 @@
|
|||||||
# https://python-poetry.org/docs/pyproject/
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core"]
|
requires = ["uv_build>=0.8.18,<0.9.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "uv_build"
|
||||||
|
|
||||||
[tool.poetry]
|
[project]
|
||||||
name = "wavinfo"
|
name = "wavinfo"
|
||||||
version = "3.1.0"
|
version = "3.1.0"
|
||||||
description = "Probe WAVE files for all metadata"
|
description = "Probe WAVE files for all metadata"
|
||||||
authors = ["Jamie Hardt <jamiehardt@me.com>"]
|
authors = [{ name = "Jamie Hardt", email = "jamiehardt@me.com"}]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
requires-python = ">=3.8"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
@@ -38,18 +37,12 @@ keywords = [
|
|||||||
'film',
|
'film',
|
||||||
'broadcast'
|
'broadcast'
|
||||||
]
|
]
|
||||||
|
dependencies = [
|
||||||
|
"lxml>=6.0.2",
|
||||||
|
]
|
||||||
|
|
||||||
[tool.poetry.extras]
|
[project.scripts]
|
||||||
doc = ['sphinx', 'sphinx_rtd_theme']
|
ptulsconv = "ptulsconv:__main__.main"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
|
||||||
wavinfo = 'wavinfo.__main__:main'
|
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
|
||||||
python = "^3.8"
|
|
||||||
lxml = "~= 5.3.0"
|
|
||||||
sphinx_rtd_theme = {version= '>= 1.1.1', optional=true}
|
|
||||||
sphinx = {version= '>= 5.3.0', optional=true}
|
|
||||||
|
|
||||||
[tool.pyright]
|
[tool.pyright]
|
||||||
typeCheckingMode = "basic"
|
typeCheckingMode = "basic"
|
||||||
@@ -65,3 +58,12 @@ disable = [
|
|||||||
"R0913", # (too-many-arguments)
|
"R0913", # (too-many-arguments)
|
||||||
"W0105", # (pointless-string-statement)
|
"W0105", # (pointless-string-statement)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[dependency-groups]
|
||||||
|
dev = [
|
||||||
|
"ruff>=0.14.0",
|
||||||
|
]
|
||||||
|
doc = [
|
||||||
|
"sphinx>=7.1.2",
|
||||||
|
"sphinx-rtd-theme>=3.0.2",
|
||||||
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user