-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 808 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 808 Bytes
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
[build-system]
requires = ["setuptools"]
[project]
name = "imgsort"
version = "1.2.1"
description = "A program that lets you easily sort images into different folders."
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "Matthias Quintern", email = "matthias.quintern@posteo.de" }
]
classifiers = [
"Operating System :: POSIX :: Linux",
"Environment :: Console :: Curses",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
]
[project.urls]
repository = "https://github.com/MatthiasQuintern/imgsort"
[project.scripts]
imgsort = "imgsort.sorter:main"
[tool.setuptools.packages.find]
where = ["."]