summaryrefslogtreecommitdiff
path: root/passlib/_setup/stamp.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/_setup/stamp.py')
-rw-r--r--passlib/_setup/stamp.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/passlib/_setup/stamp.py b/passlib/_setup/stamp.py
index e3127e4..dfa62bc 100644
--- a/passlib/_setup/stamp.py
+++ b/passlib/_setup/stamp.py
@@ -1,22 +1,22 @@
"update version string during build"
-#=========================================================
+#=============================================================================
# imports
-#=========================================================
+#=============================================================================
from __future__ import with_statement
-#core
+# core
import os
import re
import time
from distutils.dist import Distribution
-#pkg
-#local
+# pkg
+# local
__all__ = [
"stamp_source",
"stamp_distutils_output",
]
-#=========================================================
+#=============================================================================
# helpers
-#=========================================================
+#=============================================================================
def get_command_class(opts, name):
return opts['cmdclass'].get(name) or Distribution().get_command_class(name)
@@ -52,6 +52,6 @@ def stamp_distutils_output(opts, version):
stamp_source(base_dir, version, self.dry_run)
opts['cmdclass']['sdist'] = sdist
-#=========================================================
+#=============================================================================
# eof
-#=========================================================
+#=============================================================================