forked from julbean/describealign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (25 loc) · 889 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "describealign"
authors = [{ name = "Julian Brown", email = "julbean@proton.me" }]
description = "Combines videos with matching audio files (e.g. audio descriptions)"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies"]
[tool.setuptools]
packages = ["describealign"]
[tool.setuptools.dynamic]
version = { file = "version" }
dependencies = { file = "requirements.txt" }
[project.scripts]
describealign = "describealign:command_line_interface"
[project.urls]
"Homepage" = "https://github.com/julbean/describealign"
"Bug Tracker" = "https://github.com/julbean/describealign/issues"