-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
31 lines (28 loc) · 878 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pyd2v"
version = "1.4.0"
description = "A Python Parser for DGMPGDec's D2V Project Files."
license = "MIT"
authors = ["PHOENiX <rlaphoenix@pm.me>"]
maintainers = ["PHOENiX <rlaphoenix@pm.me>"]
readme = "README.md"
homepage = "https://github.com/rlaphoenix/pyd2v"
repository = "https://github.com/rlaphoenix/pyd2v"
keywords = ["python", "d2v", "dgindex", "dgmpgdec", "mpeg"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video"
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
click = "^8.1.7"
jsonpickle = "^3.0.2"
[tool.poetry.scripts]
d2v = "pyd2v.__main__:main"