diff options
author | Robert Collins <robertc@robertcollins.net> | 2014-08-24 18:00:49 +1200 |
---|---|---|
committer | Robert Collins <robertc@robertcollins.net> | 2014-08-24 18:00:49 +1200 |
commit | 4b1cf209d9e132440bc9cfed30c693ecbfab6c30 (patch) | |
tree | f2b4d85d6787cfd1eff2a75de68adc2584a4934a /setup.py | |
parent | 19a32fbbc325bcb273c7d5f9b2f4e538a03e748d (diff) | |
download | subunit-0.0.19.tar.gz |
Fixes for release process.0.0.19
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ #!/usr/bin/env python +import os.path try: # If the user has setuptools / distribute installed, use it from setuptools import setup @@ -33,6 +34,7 @@ VERSION = ( or "0.0") +os.chdir(os.path.dirname(__file__)) setup( name='python-subunit', version=VERSION, |