forked from uber/pymegacli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 879 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
26
27
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='pymegacli',
version='0.1.5.6',
author='James Brown',
author_email='[email protected]',
url='https://github.com/uber/pymegacli',
description='object-oriented API around the MegaCLI tool for administrating LSI RAID cards',
license='MIT',
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: System :: Hardware',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Intended Audience :: System Administrators',
'Development Status :: 4 - Beta',
],
packages=['pymegacli'],
scripts=['bin/check_megacli'],
long_description=open('README.md', 'r').read(),
)