-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.11 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
[project]
name = "batchlink"
dynamic = ["version"]
description = "Batch link files without modifying original files."
authors = [
{name = "Jax Young", email = "jaxvanyang@gmail.com"},
]
dependencies = []
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
keywords = ["batch-link", "batch-rename", "auto-rename"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Utilities"
]
[project.urls]
Source = "https://github.com/jaxvanyang/batchlink"
Repository = "https://github.com/jaxvanyang/batchlink.git"
Issues = "https://github.com/jaxvanyang/batchlink/issues"
[project.scripts]
batchlink = "batchlink.cli:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "file"
path = "src/batchlink/__init__.py"
[tool.pylint."messages control"]
disable = ["too-many-arguments"]
[tool.isort]
line_length = 88