-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
35 lines (30 loc) · 906 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
[tool.poetry]
name = "audiomatch"
version = "0.2.2"
description = "A small command-line tool to find similar audio files"
keywords = ["duplicate", "detection", "audio", "fingerprinting", "command-line"]
readme = "README.rst"
authors = ["Aleksei Maslakov <[email protected]>"]
license = "MIT"
packages = [
{ include = "audiomatch", from = "src" },
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Typing :: Typed",
]
build = "build.py"
[tool.poetry.scripts]
audiomatch = "audiomatch.cli:invoke"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
tox = "^3.14.6"
pre-commit = "^2.2.0"
[build-system]
requires = ["poetry>=0.12,<1.0"]
build-backend = "poetry.masonry.api"