-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (30 loc) · 970 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "powerletrics"
version = "0.0.6"
authors = [
{ name="Didi Hoffmann", email="powerletrics@ribalba.de" },
]
description = "A program that brings power estimation per process to your Linux system"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
[project.scripts]
powerletrics = "powerletrics.powerletrics:main"
[tool.setuptools.packages.find]
include = ["powerletrics*"]
[tool.setuptools.package-data]
"powerletrics" = ["**/*"]
[tool.setuptools]
include-package-data = true
[project.urls]
Homepage = "https://github.com/green-kernel/powerletrics"
Issues = "https://github.com/green-kernel/powerletrics/issues"