-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
30 lines (26 loc) · 878 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ffmpeg4discord"
version = "0.1.8"
description = "A tool to help convert a video file to a target file size."
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{ name = "Zach Fleeman", email = "zfleeman@gmail.com" }]
license = {file = "LICENSE"}
requires-python = ">= 3.9"
dependencies = [
"Flask==3.0.1",
"ffmpeg-python==0.2.0"
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.urls]
Homepage = "https://github.com/zfleeman/ffmpeg4discord"
Issues = "https://github.com/zfleeman/ffmpeg4discord/issues"
[project.scripts]
ff4d = "ffmpeg4discord.__main__:main"
install-ffmpeg-windows = "ffmpeg4discord.windows:install"
[tool.setuptools.package-data]
ffmpeg4discord = ["templates/*.html"]