-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.21 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
[project]
name = "py-dmidecode"
version = "0.1.3"
description = "python library to parse the output of dmidecode"
authors = [{ name = "Christophe de Carvalho", email = "[email protected]" }]
requires-python = ">=3.8.1,<4.0"
readme = "README.md"
keywords = ["system development"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/zaibon/py-dmidecode"
Repository = "https://github.com/zaibon/py-dmidecode"
"Bug Tracker" = "https://github.com/zaibon/py-dmidecode/issues"
[dependency-groups]
dev = [
"black>=23.3,<25.0",
"flake8>=6,<8",
"pytest>=7.4,<9.0",
"pytest-cov>=4.1,<6.0",
]
[tool.hatch.build.targets.sdist]
include = ["dmidecode"]
[tool.hatch.build.targets.wheel]
include = ["dmidecode"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"