-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 973 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 973 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
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "plotbitrate"
dynamic = ["version"]
description = "A simple bitrate plotter for media files"
readme = "README.md"
authors = [
{name = "Eric Work", email = "work.eric@gmail.com"},
{name = "Steve Schmidt", email = "azcane@gmail.com"},
]
license = "BSD-2-Clause"
license-files = ["LICENSE"]
keywords = ["ffprobe", "bitrate", "plot"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Multimedia :: Video",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.6.1"
dependencies = [
"matplotlib",
"PyQt6",
]
[project.urls]
homepage = "https://github.com/zeroepoch/plotbitrate"
[project.scripts]
plotbitrate = "plotbitrate:main"
[tool.setuptools.dynamic]
version = {attr = "plotbitrate.__version__"}
[dependency-groups]
dev = [
"mypy",
"ruff",
"build",
"twine",
]