-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (33 loc) · 883 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "desktop-groups"
version = "0.0.4"
dependencies = [
"customtkinter",
"pillow",
"jsonschema",
"argparse",
"icoextract"
]
authors = [{ name="Nitro4542" }]
description = "Organizes your desktop"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/Nitro4542/desktop-groups"
Issues = "https://github.com/Nitro4542/desktop-groups/issues"
[project.scripts]
desktop-groups = "desktop_groups:__main__.main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"*" = ["*.json", "*.ico"]