Skip to content

Commit

Permalink
Merge pull request #2 from katzwigmore/Update-v1.11
Browse files Browse the repository at this point in the history
Update v1.11 fixes #1
  • Loading branch information
dmarienburg committed Jul 14, 2015
2 parents 319785c + 0412714 commit 4a19773
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 8 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
# SSVF-Repositry-DQ-Processor
=================================================================================================
Latest Version: v1.1
Last Updated 7/13/2015
Latest Version: v1.11
Last Updated 7/14/2015

Author: David Katz-Wigmore

This program stream lines the processes of extracting HMIS client ID numbers from SSVF DQ reports.

Release Notes:
v1.11--Minor Update
Release Date: 7/14/2015

What's New:
Added "Very High Income (Entry)" and "Very High Income (Exit)" catagories to the dropdown menu.
Cleaned up setup.py so that version information displays correctly in the compiled .exe

v1.1--Full Public Release
Release Date: 7/13/2015

Added code documentation and increased regex efficiency with this release.

There is still no internal testing in the code so that will be coming in a future release though I am quite
confident that everything is working as it should based on the couple of times I used v1.0.

At this point I'm releasing the program to the greater SSVF community.

Please contact me with any issues you find in the software. I hope this helps make those long VA .pdf files more o
a usefull data quality tool.

v1.0--Full Release--Internal Only
Release Date: 04/11/2015

All functionality is present in this version but the code is poorly documented and there are no internal tests.

3 changes: 2 additions & 1 deletion RepositoryDQProcessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ def clear_all():
"No Head of Household",
"Residence Prior to Project Entry",
"Multiple Heads of Household",
"Very High Monthly Income"])
"Very High Monthly Income (Entry)",
"Very High Monthly Income (Exit)"])

agency_choices = ["-",
"Central City Concern",
Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

setup(
console=[{
"script":"RepositoryDQProcessor.py",
version="1.1",
author="David Katz-Wigmore",
name="SSVF DQ Repository Processor",
description="A program to facilitate the processing of the monthly SSVF DQ .pdf files")
"script": "RepositoryDQProcessor.py",
"version": "1.11",
"author": "David Katz-Wigmore",
"name": "SSVF DQ Repository Processor",
"description": "A program to facilitate the processing of the monthly SSVF DQ .pdf files"
}
]
)

0 comments on commit 4a19773

Please sign in to comment.