-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.05 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>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyhw"
version = "0.9.0"
description = "PyHw, a neofetch-like command line tool for fetching system information but written mostly in python."
keywords = ["neofetch", "system information", "command line tool", "python", "hardware information", "fastfetch", "fetching"]
authors = [
{ name = "Xiao Ran", email = "[email protected]" }
]
readme = "README.md"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.9"
dependencies = [
"pypci-ng>=0.1.2"
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
urls = {homepage = "https://github.com/xiaoran007/pyhw"}
[tool.setuptools]
packages = {find = {where = ["src"]}}
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.package-data]
"pyhw" = ["frontend/logo/ascii/*.pyhw", "library/lib/*.dylib"]
[project.scripts]
pyhw = "pyhw.__main__:main"