-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 856 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
31
32
33
34
35
36
37
38
[build-system]
requires = ["hatchling", "hatch_vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["plot_av"]
[project]
name = "plot_av"
dynamic = ["version"]
dependencies = [
"av",
"matplotlib",
]
authors = [
{ name="Jay Zhang", email="wangyoucao577@gmail.com" },
]
description = "Plot Audio/Video streams for better insights"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
]
[project.scripts]
plot-av = "plot_av.plot_av:main"
[project.urls]
Homepage = "https://github.com/wangyoucao577/plot-av"
Issues = "https://github.com/wangyoucao577/plot-av/issues"