-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
45 lines (39 loc) · 1.08 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
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "HardwareMonitor"
authors = [{ name = "Nicholas Feix", email = "nf@fconsoft.com" }]
description = "Python import layer for the LibreHardwareMonitorLib assembly."
readme = "README.md"
keywords = ["monitoring", "sensors", "LibreHardwareMonitor"]
requires-python = ">=3.6"
license = { file = "LICENSE" }
classifiers = [
"License :: Other/Proprietary License",
"Intended Audience :: Developers",
"Environment :: Win32 (MS Windows)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Monitoring",
]
dependencies = [
"pythonnet"
]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/snip3rnick/PyHardwareMonitor"
[tool.setuptools]
include-package-data = true
packages = ["HardwareMonitor"]
[tool.build-system]
exclude = [
".github/*",
"examples/*",
"scripts/*",
"submodules/*",
"tests/*",
]
[tool.setuptools.package-data]
"HardwareMonitor" = ["lib/*"]
[tool.setuptools_scm]