forked from DMTF/Redfish-Protocol-Validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 906 Bytes
/
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
# Copyright Notice:
# Copyright 2020 DMTF. All rights reserved.
# License: BSD 3-Clause License. For full text see link:
# https://github.com/DMTF/Redfish-Protocol-Validator/blob/master/LICENSE.md
from setuptools import setup
setup(
name="redfish_protocol_validator",
version="0.9.0",
description="Redfish Protocol Validator",
author="DMTF, https://www.dmtf.org/standards/feedback",
license="BSD 3-clause \"New\" or \"Revised License\"",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Communications"
],
keywords="Redfish",
url="https://github.com/DMTF/Redfish-Protocol-Validator",
packages=["assertions"],
install_requires=["aenum", "colorama", "pyasn1", "pyasn1-modules",
"requests", "sseclient-py", "urllib3"]
)