-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
35 lines (29 loc) · 1.11 KB
/
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
[build-system]
requires = ["setuptools>=63.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name="pyaudiobookbinder"
version="0.7.0"
authors =[{name="Daniel Byrne",email="[email protected]"}]
description = "PyAudioBookBinder is a lightweight tool using ffmeg which simplifies the process of binding multiple audio files togethers into an audiobook by gleaming smart defaults from the audio files's metadata, locations, durations, and names."
readme = "README.md"
requires-python=">=3.9.0"
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"argparse",
]
[project.urls]
Homepage="https://github.com/realdanielbyrne/PyAudiobookBinder"
[tool.setuptools]
include-package-data = true
[project.scripts]
pybind = "pyaudiobookbinder:pybind"