-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.34 KB
/
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
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyvidplayer2"
dynamic = ["version"]
description = "Reliable, easy, and fast video playback in Python"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Anray Liu", email = "anrayliu@gmail.com"}
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"opencv-python",
"pygame",
"pysubs2",
"PyAudio"
]
keywords = ["pygame", "video", "playback", "tkinter", "pyqt", "pyside", "pyglet"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Software Development :: Libraries :: pygame",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
[tool.setuptools.dynamic]
version = {attr = "pyvidplayer2._version.__version__"}
[project.urls]
Homepage = "https://github.com/anrayliu/pyvidplayer2"
Documentation = "https://github.com/anrayliu/pyvidplayer2/blob/main/documentation.md"
Repository = "https://github.com/anrayliu/pyvidplayer2.git"
Issues = "https://github.com/anrayliu/pyvidplayer2/issues"