Skip to content

Commit

Permalink
feat: added pyproject.toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
jact committed Jul 4, 2024
1 parent e0d7ade commit 9b8a04e
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# https://setuptools.pypa.io/

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "lshw"
dynamic = ["version"]
authors = [
{name = "Jose Antonio Chavarría", email = "[email protected]"},
{name = "Alfonso Gómez Sánchez", email = "[email protected]"}
]
maintainers = [
{name = "Jose Antonio Chavarría", email = "[email protected]"},
]
license = { text = "GPL-3.0-or-later" }
description = "LsHw Windows Emulator is a simplified Windows port of Hardware Lister project"
readme = "README.md"
keywords = ["hardware", "windows", "lshw"]
requires-python = ">=3.6"
dependencies = [
"psutil",
"wmi",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Programming Language :: Python",
"Topic :: Utilities",
]

[project.urls]
homepage = "https://github.com/migasfree/lshw-windows-emulator"
repository = "https://github.com/migasfree/lshw-windows-emulator"
"Bug Report" = "https://github.com/migasfree/lshw-windows-emulator/issues"

[project.scripts]
lshw = "lshw = lshw.__main__:main"

[tool.setuptools.packages]
find = {}

[tool.setuptools.dynamic]
version = {attr = "lshw.__version__"}

0 comments on commit 9b8a04e

Please sign in to comment.