aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dotfiles/cli.py7
-rw-r--r--dotfiles/core.py7
2 files changed, 14 insertions, 0 deletions
diff --git a/dotfiles/cli.py b/dotfiles/cli.py
index fda0a2e..1e2437f 100644
--- a/dotfiles/cli.py
+++ b/dotfiles/cli.py
@@ -1,10 +1,17 @@
# -*- coding: utf-8 -*-
+"""
+dotfiles.cli
+
+This module provides the CLI interface to dotfiles.
+"""
+
import os
from . import core
import ConfigParser
from optparse import OptionParser, OptionGroup
+
USAGE = "Usage: %prog ACTION [OPTION...] [FILE...]"
NO_REPO_MESSAGE = """Could not find dotfiles repository \"%s\"
diff --git a/dotfiles/core.py b/dotfiles/core.py
index 843f90f..58310d2 100644
--- a/dotfiles/core.py
+++ b/dotfiles/core.py
@@ -1,5 +1,12 @@
# -*- coding: utf-8 -*-
+"""
+dotfiles.core
+~~~~~~~~~~~~~
+
+This module provides the basic functionality of dotfiles.
+"""
+
import os
import shutil