-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 1.01 KB
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
39
40
41
42
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "static_ffmpeg"
description = "Cross platform ffmpeg to work on various systems."
readme = "README.md"
authors = [
{name = "Zach Vorhies", email = "dont@email.me"}
]
license = {text = "MIT"}
requires-python = ">=3.6.0"
dependencies = [
"requests",
"filelock",
"progress",
"twine>=3.8.0",
]
version = "3.0"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Environment :: Console",
]
[project.optional-dependencies]
test = ["pytest"]
[project.scripts]
static_ffmpeg = "static_ffmpeg.run:main_static_ffmpeg"
static_ffprobe = "static_ffmpeg.run:main_static_ffprobe"
static_ffmpeg_paths = "static_ffmpeg.run:main_print_paths"
[tool.setuptools]
packages = ["static_ffmpeg"]