-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "videoprof"
version = "0.3.0"
description = "Video Profiler - profile various attributes of local videos like resolution, codec, container, audio channels, and more!"
authors = ["Christian Lent <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["videoprof", "video", "profile", "profiler", "mediainfo", "resolution", "codec", "container", "collection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Video",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
packages = [
{ include = "videoprof" },
{ include = "videoprof/py.typed" },
]
include=["videoprof/default_config.json"]
[tool.poetry.scripts]
videoprof = "videoprof.videoprof:main"
[tool.poetry.dependencies]
appdirs = "^1.4.4"
click = "^7.1.2"
colored = "^1.4.2"
dataclasses = { version = "^0.8", python = "<3.7" }
pymediainfo = "^5.0.3"
python = "^3.6"
typing-extensions = "^3.7.4"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.4"
mypy = "^0.790"
pytest = "^6.1.2"
pytest-cov = "^2.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 110
target-version = ['py36']