Permalink
Browse files

Fixed bug preventing scripts from executing

  • Loading branch information...
1 parent 86d82f3 commit a009c67810b15cf732d9d0cae471e66057437723 @cndreisbach cndreisbach committed Feb 18, 2013
Showing with 12 additions and 4 deletions.
  1. +4 −0 CHANGELOG.txt
  2. +2 −2 docs/conf.py
  3. +1 −0 hmda_tools/__init__.py
  4. +5 −2 setup.py
View
@@ -1,3 +1,7 @@
+0.1.3 - 2013/2/17
+=================
+* fixed bug preventing scripts from working outside project directory
+
0.1.2 - 2013/2/17
=================
* fixed bug preventing requirements from being found
View
@@ -50,9 +50,9 @@
# built documents.
#
# The short X.Y version.
-version = '0.1.2'
+version = '0.1.3'
# The full version, including alpha/beta/rc tags.
-release = '0.1.2'
+release = version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
@@ -1,6 +1,7 @@
import os, tempfile
import requests
+
def download_file(uri):
r = requests.get(uri)
if r.status_code == 200:
View
@@ -28,14 +28,17 @@ def requirements():
return map(lambda x: x.strip(), f.readlines())
setup(name='hmda_tools',
- version='0.1.2',
+ version='0.1.3',
description='Tools to make working with HMDA data easier.',
long_description=readme(),
url='http://github.com/cfpb/hmda-tools',
author='Clinton Dreisbach and others',
author_email='clinton.dreisbach@cfpb.gov',
license='Public domain',
- packages=['hmda_tools'],
+ packages=[
+ 'hmda_tools',
+ 'hmda_tools.data',
+ ],
install_requires=requirements(),
scripts=[
'bin/hmda_create_schemas',

0 comments on commit a009c67

Please sign in to comment.