-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
44 lines (40 loc) · 1.17 KB
/
setup.cfg
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
44
[aliases]
test = pytest
[metadata]
author = Qin Fandong
author_email = [email protected]
classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
description = This parse dmidecode output to JSON text
download_url = https://github.com/Arondight/python-dmiparser/tags
license = MIT License
license_file = LICENSE
long_description = file: README.md
long_description_content_type = text/markdown
name = dmiparser
platforms = Any
url = https://github.com/Arondight/python-dmiparser
version = attr: dmiparser.__version__
[options]
include_package_data = True
install_requires =
packages = find:
setup_requires = pytest-runner
tests_require = pytest
zip_safe = True
[options.packages.find]
exclude =
tests*
[options.entry_points]
console_scripts =
dmidecoder = dmiparser.dmidecoder:main
dmiparser = dmiparser:main