-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 944 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 944 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "monkeyplug"
version = "2.1.9"
authors = [
{ name="Seth Grover", email="[email protected]" },
]
description = "monkeyplug is a little script to censor profanity in audio files."
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Sound/Audio :: Speech"
]
dependencies = [
"mmguero==2.0.3",
"mutagen==1.47.0",
"requests==2.32.5"
]
[project.urls]
Homepage = "https://github.com/mmguero/monkeyplug"
Issues = "https://github.com/mmguero/monkeyplug/issues"
Repository = "https://github.com/mmguero/monkeyplug.git"
[project.scripts]
monkeyplug = "monkeyplug:RunMonkeyPlug"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]