-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
67 lines (63 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "knowit"
version = "0.5.6"
description = "Know better your media files"
authors = [
"Rato",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ratoaq2/knowit"
keywords = [
"video",
"mkv",
"mp4",
"mediainfo",
"metadata",
"movie",
"episode",
"tv",
"shows",
"series",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Multimedia :: Video",
]
[tool.poetry.scripts]
knowit = "knowit.__main__:main"
[tool.poetry.dependencies]
python = "^3.9.0"
babelfish = "^0.6.1"
enzyme = "^0.5.2"
pint = ">=0.20.1,<0.25.0"
pymediainfo = "^6.0.1"
pyyaml = "^6.0"
trakit = "^0.2.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
flake8 = "^7.1.0"
requests = "^2.28.1"
flake8-docstrings = "^1.6.0"
flake8-import-order = "^0.18.2"
pep8-naming = "^0.14.1"
pydocstyle = "^6.1.1"
mypy = "^1.1.1"
types-requests = "^2.28.11.8"
types-mock = "^5.0.0.2"
typing-extensions = "^4.12.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"