-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (66 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
73 lines (66 loc) · 1.82 KB
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
68
69
70
71
72
73
[tool.poetry]
name = "tempren"
version = "1.2.6"
description = "Template-based renaming utility"
readme = "README.md"
license = "GPL-3.0-or-later"
authors = ["Paweł Żukowski <p.z.idlecode@gmail.com>"]
homepage = "https://github.com/idle-code/tempren"
keywords = ["batch-renaming", "cli", "filename"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: System :: Filesystems",
"Topic :: Utilities"
]
[tool.poetry.dependencies]
python = "^3.9"
antlr4-python3-runtime = "4.13.1"
Unidecode = "^1.3.6"
pathvalidate = "^3.1.0"
mutagen = "^1.46.0"
docstring-parser = "^0.16"
python-magic = "^0.4.27"
Pillow = "^10.0.0"
piexif = "^1.1.3"
pymediainfo = {version = "^6.0.1", optional = true}
isodate = "^0.6.1"
gpxpy = "1.5.0"
Pint = "^0.21.0"
geopy = "^2.4.1"
fastkml = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-cov = "^4.1"
coverage = "^7.2.7"
pre-commit = "^3.5"
mypy = "^1.4.1"
pylint = "^3.0.2"
black = "^24.4.0"
[tool.poetry.extras]
video = ["pymediainfo"]
[tool.poetry.scripts]
tempren = "tempren.cli:throwing_main"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.pytest.ini_options]
addopts = "--cov-report=xml --cov-report=term-missing --cov=tempren"
testpaths = ["tests"]
markers = [
"e2e: slower, end-to-end tests often running tempren as a separate process",
"slow: slower tests that often use timeouts"
]
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"