-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (29 loc) · 915 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
28
29
30
31
32
# Copyright 2015-2016, Truveris Inc. All Rights Reserved.
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="mdstat",
version="1.0.4",
description="mdstat parser",
author="Truveris Inc.",
author_email="[email protected]",
url="https://github.com/truveris/py-mdstat/",
license="MIT License",
keywords=["linux", "mdstat", "mdadm", "mdjson","raid"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
scripts=[
"tools/mdjson",
],
test_suite="nose.collector",
packages=["mdstat"],
)