-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.23 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
[project]
name = "PyArchitecture"
dynamic = ["version"]
description = "Python module to get kernel information via OS specific CLI commands"
readme = "README.md"
authors = [{ name = "Vignesh Rao", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Topic :: System :: Hardware",
]
keywords = ["physical-drives", "PyArchitecture"]
requires-python = ">=3.10"
[tool.setuptools]
packages = [
"pyarchitecture",
"pyarchitecture.cpu",
"pyarchitecture.gpu",
"pyarchitecture.disks",
"pyarchitecture.memory",
]
[tool.setuptools.dynamic]
version = {attr = "pyarchitecture.version"}
[project.optional-dependencies]
dev = ["pre-commit"]
[project.scripts]
# sends all the args to commandline function, where the arbitary commands as processed accordingly
pyarchitecture = "pyarchitecture:commandline"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/thevickypedia/PyArchitecture"
Source = "https://github.com/thevickypedia/PyArchitecture"