-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 1022 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
[project]
name = "hhd_bazzite"
version = "0.0.1"
authors = [
{ name="Kapenekakis Antheas", email="[email protected]" },
]
description = "Handheld Daemon Plugin for Bazzite."
readme = "readme.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"rich>=13.5.2",
]
[project.urls]
"Homepage" = "https://github.com/hhd-dev/hhd_bazzite"
"Bug Tracker" = "https://github.com/hhd-dev/hhd_bazzite/issues"
[project.entry-points."hhd.plugins"]
bazzite = "hhd_bazzite.hhd:autodetect"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["hhd_bazzite*"] # package names should match these glob patterns (["*"] by default)