-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.24 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.24 KB
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
# Copyright Notice:
# Copyright 2016-2026 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link:
# https://github.com/DMTF/Redfish-Service-Validator/blob/main/LICENSE.md
from setuptools import setup
from codecs import open
with open("README.md", "r", "utf-8") as f:
long_description = f.read()
setup(
name="redfish_service_validator",
version="3.0.9",
description="Redfish Service Validator",
long_description=long_description,
long_description_content_type="text/markdown",
author="DMTF, https://www.dmtf.org/standards/feedback",
license='BSD 3-clause "New" or "Revised License"',
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Communications",
],
keywords="Redfish",
url="https://github.com/DMTF/Redfish-Protocol-Validator",
packages=["redfish_service_validator"],
entry_points={
"console_scripts": [
"rf_service_validator=redfish_service_validator.console_scripts:main",
"rf_service_validator_gui=redfish_service_validator.gui:main",
]
},
install_requires=["redfish>=3.1.5", "requests", "colorama"],
)