-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
57 lines (48 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "smartwatts"
description = "SmartWatts is a formula for a self-adaptive software-defined power meter based on the PowerAPI framework."
readme = "README.md"
keywords = ["powerapi", "energy", "power-meter", "power-model", "green-computing", "containers"]
license = {text = "BSD-3-Clause"}
requires-python = ">=3.10"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Monitoring",
]
authors = [
{name = "Guillaume Fieni", email = "[email protected]"},
]
dependencies = [
"powerapi[everything] == 2.8.0",
"scikit-learn >= 0.20.2",
]
[project.optional-dependencies]
test = [
"pytest >= 3.9.2",
"pytest-cov >= 4.0.0",
]
lint = [
"ruff >= 0.0.262",
"pylint >= 2.16.0"
]
# Aliases:
devel = ["smartwatts[test, lint]"]
[project.urls]
homepage = "https://powerapi.org"
documentation = "https://powerapi.readthedocs.org"
repository = "https://github.com/powerapi-ng/smartwatts-formula"
[tool.hatch.version]
source = "code"
path = "src/smartwatts/__init__.py"