-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (29 loc) · 1.04 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
[build-system]
requires = [ "setuptools", "wheel" ]
build-backend = "setuptools.build_meta"
[project]
name = "powermodes"
description = "Laptop power consumption manager"
version = "0.0.1"
authors = [
{ name = "Voidbert", email = "humbertogilgomes@protonmail.com" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11" # Detected by vermin
keywords = [ "power management", "battery" ]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Langunage :: Python :: 3",
"Topic :: System"
]
dependencies = []
[project.urls]
Homepage = "https://github.com/voidbert/dotfiles"
Repository = "https://github.com/voidbert/dotfiles"
"Bug Tracker" = "https://github.com/voidbert/dotfiles/issues"