-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 808 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "replit-ffmpeg"
version = "0.1"
description = "Installs FFmpeg for you on Replit."
keywords = ["replit", "ffmpeg", "opus", "youtube-dl"]
authors = [
{ name = "AWeirdDev", email = "aweirdscratcher@gmail.com" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"rich",
"requests"
]
[project.scripts]
replit-ffmpeg = "replit_ffmpeg.installer:main"
[project.urls]
"Homepage" = "https://github.com/AWeirdScratcher/replit-ffmpeg"
"Bug Tracker" = "https://github.com/AWeirdScratcher/replit-ffmpeg/issues"