-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 772 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
[project]
name = "files-sort"
version = "1.0.3"
authors = [
{ name="AfzGit", email="sa15@duck.com" },
]
description = "Sort files into sub-folders based on extensions, creation/modified times, and size."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/AfzGit/Files-Sort-py"
Issues = "https://github.com/AfzGit/Files-Sort-py/issues"
[project.scripts]
files-sort = "files_sort.main:main"
[build-system]
requires = [
"setuptools>=77.0.3",
"colorama>=0.4.6"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false