-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
40 lines (37 loc) · 1.22 KB
/
setup.py
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
# Copyright Notice:
# Copyright 2017-2024 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link:
# https://github.com/DMTF/Redfish-Interop-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_interop_validator",
version="2.2.7",
description="Redfish Interop 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-Interop-Validator",
packages=["redfish_interop_validator"],
entry_points={
'console_scripts': [
'rf_interop_validator=redfish_interop_validator.RedfishInteropValidator:main'
]
},
install_requires=[
"requests",
"beautifulsoup4>=4.6.0",
"lxml",
"jsonschema"
]
)