summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--commands/storage/Makefile13
-rw-r--r--commands/storage/README.md6
-rw-r--r--commands/storage/setup.cfg2
-rw-r--r--commands/storage/setup.py2
4 files changed, 22 insertions, 1 deletions
diff --git a/commands/storage/Makefile b/commands/storage/Makefile
new file mode 100644
index 0000000..d732632
--- /dev/null
+++ b/commands/storage/Makefile
@@ -0,0 +1,13 @@
+.PHONY: sdist upload_docs clean
+
+all: sdist
+
+sdist:
+ python setup.py sdist
+
+upload_docs:
+ make -C doc html
+ python setup.py upload_docs
+
+clean:
+ make -C doc clean
diff --git a/commands/storage/README.md b/commands/storage/README.md
new file mode 100644
index 0000000..60810ef
--- /dev/null
+++ b/commands/storage/README.md
@@ -0,0 +1,6 @@
+Storage management through OpenLMI storage providers.
+
+This command allows to manage storage on a machine.
+
+Among other features, it allows list, create, delete, format and mount
+various block devices and volume groups.
diff --git a/commands/storage/setup.cfg b/commands/storage/setup.cfg
new file mode 100644
index 0000000..2ddce25
--- /dev/null
+++ b/commands/storage/setup.cfg
@@ -0,0 +1,2 @@
+[upload_docs]
+upload-dir = doc/_build/html
diff --git a/commands/storage/setup.py b/commands/storage/setup.py
index c09a1f9..49a46f1 100644
--- a/commands/storage/setup.py
+++ b/commands/storage/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
PROJECT = 'openlmi-scripts-storage'
-VERSION = '0.0.1'
+VERSION = '0.0.2'
from setuptools import setup, find_packages