-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 1.15 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
[project]
name = "wallcrop"
description = "A tool for cropping an image into smaller images for use as individual desktop wallpapers"
authors = [{ name = "Max Weidauer", email = "[email protected]" }]
maintainers = [
{ name = "Max Weidauer", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = ["pillow", "click", "pyYAML", "tqdm"]
license = { file = "LICENSE" }
[project.scripts]
wallcrop = "wallcrop.wallcrop:main"
wallswitch = "wallcrop.wallswitch:main"
wallcrop_create_monitors = "wallcrop.create_monitors_file:main"
[project.urls]
Github = "https://github.com/themaxw/wallcrop"
Issues = "https://github.com/themaxw/wallcrop/issues"
[build-system]
requires = ["setuptools >= 61.0.0", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
wallcrop = ["*.yml"]
# automatically handle version numbers
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/wallcrop/_version.py"
versionfile_build = "wallcrop/_version.py"
tag_prefix = ""
parentdir_prefix = "wallcrop-"