-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (33 loc) · 979 Bytes
/
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
[project]
name = "soundcheck"
description = "A multi-processing audio check"
version = "0.0.2"
dependencies = ["audioread", "tqdm", "click", "prettytable", "format_duration"]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
]
[project.urls]
Homepage = "https://github.com/seanghay/soundcheck"
Repository = "https://github.com/seanghay/soundcheck"
[[project.authors]]
name = "Seanghay Yath"
email = "seanghay.dev@gmail.com"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["soundcheck"]
[tool.ruff]
indent-width = 2
[tool.ruff.lint]
ignore = ["E741"]
[project.scripts]
soundcheck = "soundcheck:cli.cli"