diff options
author | Jon Bernard <jbernard@tuxion.com> | 2011-08-27 10:51:28 -0400 |
---|---|---|
committer | Jon Bernard <jbernard@tuxion.com> | 2011-08-27 10:51:28 -0400 |
commit | 37734b9b880c32a9a8b602be7ea0979951e2c27b (patch) | |
tree | d7dbab13d07360d4ecb927ed93b761e0d806ef92 | |
parent | e0567f3d211be7d76dad940195f16e5ba0535685 (diff) | |
download | dotfiles-37734b9b880c32a9a8b602be7ea0979951e2c27b.tar.gz dotfiles-37734b9b880c32a9a8b602be7ea0979951e2c27b.tar.bz2 dotfiles-37734b9b880c32a9a8b602be7ea0979951e2c27b.zip |
Add publish and test routines to setup.py
-rwxr-xr-x[-rw-r--r--] | setup.py | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,6 +1,9 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +import os +import sys + try: from setuptools import setup except ImportError: @@ -9,6 +12,16 @@ except ImportError: from dotfiles.core import __version__ +if sys.argv[-1] == "publish": + os.system("python setup.py sdist upload") + sys.exit() + + +if sys.argv[-1] == "test": + os.system("python test_dotfiles.py") + sys.exit() + + setup(name='dotfiles', version=__version__, description='Easily manage your dotfiles', |