-
Notifications
You must be signed in to change notification settings - Fork 69
/
setup.py
28 lines (26 loc) · 1.13 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
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='redfishtool',
version='1.1.8',
description='Redfishtool package and command-line client',
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 :: 3.4',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications'
],
keywords='Redfish',
url='https://github.com/DMTF/Redfishtool',
download_url='https://github.com/DMTF/Redfishtool/archive/1.1.5.tar.gz',
packages=['redfishtoollib'],
scripts=['scripts/redfishtool', 'scripts/redfishtool.py'],
install_requires=['python-dateutil', 'requests']
)