Permalink
Browse files
Fixed bug preventing scripts from executing
- Loading branch information...
Showing
with
12 additions
and
4 deletions.
-
+4
−0
CHANGELOG.txt
-
+2
−2
docs/conf.py
-
+1
−0
hmda_tools/__init__.py
-
+5
−2
setup.py
|
|
@@ -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
|
|
|
|
@@ -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:
|
|
|
|
@@ -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