-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
639512c
commit e249cf1
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# This file is empty, but it tells the Python interpreter that this directory is a Python package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 = [ | ||
"pyav", | ||
"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:main" | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://github.com/wangyoucao577/plot-av" | ||
Issues = "https://github.com/wangyoucao577/plot-av/issues" |
Empty file.