-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
37 lines (33 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
[tool.poetry]
authors = ["Christophe de Carvalho <christophe.dcpm@gmail.com>"]
classifiers = [
"Development Status :: 3 - Alpha", # Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules", # Pick your license as you wish
"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",
]
description = "python library to parse the output of dmidecode"
homepage = "https://github.com/zaibon/py-dmidecode"
keywords = ["system development"]
name = "py-dmidecode"
packages = [{include = "dmidecode"}]
readme = "README.md"
repository = "https://github.com/zaibon/py-dmidecode"
version = "0.1.3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/zaibon/py-dmidecode/issues"
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.3,<25.0"
flake8 = ">=6,<8"
pytest = ">=7.4,<9.0"
pytest-cov = ">=4.1,<6.0"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]