-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 879 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 879 Bytes
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='jbrown@uber.com',
url='http://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(),
)