-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (62 loc) · 1.43 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
68
69
70
71
72
# pyproject.toml
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "Batch-Pynamer"
description = "A purely python batch file renamer (and metadata editor) specially made to work on linux"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
authors = [
{name = "Alejandro Roldán", email = "alej_roldan@disr.it"}
]
maintainers = [
{name = "Alejandro Roldán", email = "alej_roldan@disr.it"}
]
requires-python = ">=3.12"
dependencies = [
"Pillow >= 10.0.0",
"mutagen >= 1.47.0",
"scandirRecursive @ git+https://github.com/Alejandro-Roldan/scandirRecursive.git"
]
dynamic = ["version", "urls"]
[project.optional-dependencies]
lint = [
"black >= 24.8.0",
"isort >= 5.13.0",
"flake8 >= 7.1.0"
]
dev = [
"Batch-Pynamer[lint]"
]
[project.scripts]
batchpynamer = "batchpynamer.batchpynamer:_gui_run"
[project.gui-scripts]
batchpynamer = "batchpynamer.batchpynamer:_gui_run"
[tool.setuptools.dynamic]
version = {attr = "batchpynamer.__version__"}
urls.Repository = {attr = "batchpynamer.__url__"}
urls.Homepage = {attr = "batchpynamer.__url__"}
urls.Documentation = {attr = "batchpynamer.WIKI_URL"}
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.env
| _build
| buck-out
| build
| dist
| blib2to3
| tests/data
)/
'''
[tool.isort]
profile = "black"
skip_gitignore = true