Permalink
Browse files
Fixed requirements bug; added CHANGELOG
- Loading branch information...
Showing
with
23 additions
and
3 deletions.
-
+12
−0
CHANGELOG.txt
-
+2
−0
MANIFEST.in
-
+6
−0
README.rst
-
+2
−2
docs/conf.py
-
+1
−1
setup.py
|
|
@@ -0,0 +1,12 @@ |
|
|
+0.1.2 - 2013/2/17
|
|
|
+=================
|
|
|
+* fixed bug preventing requirements from being found
|
|
|
+* added CHANGELOG and contributors
|
|
|
+
|
|
|
+0.1.1 - 2013/2/16
|
|
|
+=================
|
|
|
+* added documentation
|
|
|
+
|
|
|
+0.1.0 - 2013/2/15
|
|
|
+=================
|
|
|
+* initial release
|
|
|
@@ -1,4 +1,6 @@ |
|
|
include README.rst
|
|
|
include TERMS.txt
|
|
|
+include CHANGELOG.txt
|
|
|
+include requirements.txt
|
|
|
include docs/*
|
|
|
include hmda_tools/data/code_sheet_data/*
|
|
@@ -16,3 +16,9 @@ purchases, home purchase pre-approvals, home improvement, and refinance applicat |
|
|
Documentation
|
|
|
--------------
|
|
|
Documentation can be found at https://hmda-tools.readthedocs.org/.
|
|
|
+
|
|
|
+Contributors
|
|
|
+-------------
|
|
|
+* Clinton Dreisbach
|
|
|
+* Ross Karchner
|
|
|
+* Diego Lapiduz
|
|
@@ -50,9 +50,9 @@ |
|
|
# built documents.
|
|
|
#
|
|
|
# The short X.Y version.
|
|
|
-version = '0.1'
|
|
|
+version = '0.1.2'
|
|
|
# The full version, including alpha/beta/rc tags.
|
|
|
-release = '0.1'
|
|
|
+release = '0.1.2'
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
# for a list of supported languages.
|
|
|
|
@@ -28,7 +28,7 @@ def requirements(): |
|
|
return map(lambda x: x.strip(), f.readlines())
|
|
|
|
|
|
setup(name='hmda_tools',
|
|
|
- version='0.1.1',
|
|
|
+ version='0.1.2',
|
|
|
description='Tools to make working with HMDA data easier.',
|
|
|
long_description=readme(),
|
|
|
url='http://github.com/cfpb/hmda-tools',
|
|
|
0 comments on commit
86d82f3