-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1228 from martinholmer/move-simtax-code
Move simtax code and test to taxcalc/validation/taxsim directory
- Loading branch information
Showing
39 changed files
with
114 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ omit = | |
taxcalc/_version.py | ||
taxcalc/functions.py | ||
taxcalc/*.json | ||
taxcalc/validation/taxsim/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
from .calculate import * | ||
from .policy import * | ||
from .behavior import * | ||
from .consumption import * | ||
from .filings import * | ||
from .growfactors import * | ||
from .growdiff import * | ||
from .records import * | ||
from .simpletaxio import * | ||
from .taxcalcio import * | ||
from .utils import * | ||
from .decorators import * | ||
from .macro_elasticity import * | ||
from .dropq import * | ||
from taxcalc.calculate import * | ||
from taxcalc.policy import * | ||
from taxcalc.behavior import * | ||
from taxcalc.consumption import * | ||
from taxcalc.filings import * | ||
from taxcalc.growfactors import * | ||
from taxcalc.growdiff import * | ||
from taxcalc.records import * | ||
from taxcalc.taxcalcio import * | ||
from taxcalc.utils import * | ||
from taxcalc.decorators import * | ||
from taxcalc.macro_elasticity import * | ||
from taxcalc.dropq import * | ||
|
||
from ._version import get_versions | ||
from taxcalc._version import get_versions | ||
__version__ = get_versions()['version'] | ||
del get_versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
from .dropq import (run_model, run_nth_year_model, check_user_mods, | ||
run_gdp_elast_model, run_nth_year_gdp_elast_model, | ||
calculate_baseline_and_reform, | ||
chooser, drop_records, | ||
format_macro_results, groupby_means_and_comparisons) | ||
from taxcalc.dropq.dropq import (run_model, check_user_mods, | ||
run_nth_year_model, | ||
run_gdp_elast_model, | ||
run_nth_year_gdp_elast_model, | ||
calculate_baseline_and_reform, | ||
chooser, drop_records, | ||
format_macro_results, | ||
groupby_means_and_comparisons) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
from .forms import * | ||
from taxcalc.filings.forms import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
from .errors import * | ||
from .tax_form import TaxForm | ||
from .us1040 import US1040 | ||
from .us1040sa import US1040SA | ||
from .us1040sb import US1040SB | ||
from .us1040sc import US1040SC | ||
from .us1040sd import US1040SD | ||
from .us1040se import US1040SE | ||
from .us1040seic import US1040SEIC | ||
from .us1040sr import US1040SR | ||
from .us1040sse import US1040SSE | ||
from .us2441 import US2441 | ||
from .us3800 import US3800 | ||
from .us4137 import US4137 | ||
from .us4255 import US4255 | ||
from .us4952 import US4952 | ||
from .us5695 import US5695 | ||
from .us6251 import US6251 | ||
from .us8801 import US8801 | ||
from .us8863 import US8863 | ||
from taxcalc.filings.forms.errors import * | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
from taxcalc.filings.forms.us1040 import US1040 | ||
from taxcalc.filings.forms.us1040sa import US1040SA | ||
from taxcalc.filings.forms.us1040sb import US1040SB | ||
from taxcalc.filings.forms.us1040sc import US1040SC | ||
from taxcalc.filings.forms.us1040sd import US1040SD | ||
from taxcalc.filings.forms.us1040se import US1040SE | ||
from taxcalc.filings.forms.us1040seic import US1040SEIC | ||
from taxcalc.filings.forms.us1040sr import US1040SR | ||
from taxcalc.filings.forms.us1040sse import US1040SSE | ||
from taxcalc.filings.forms.us2441 import US2441 | ||
from taxcalc.filings.forms.us3800 import US3800 | ||
from taxcalc.filings.forms.us4137 import US4137 | ||
from taxcalc.filings.forms.us4255 import US4255 | ||
from taxcalc.filings.forms.us4952 import US4952 | ||
from taxcalc.filings.forms.us5695 import US5695 | ||
from taxcalc.filings.forms.us6251 import US6251 | ||
from taxcalc.filings.forms.us8801 import US8801 | ||
from taxcalc.filings.forms.us8863 import US8863 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SB(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SC(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SD(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SEIC(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SR(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US1040SSE(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US2441(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US3800(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US4137(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US4255(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US4952(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US5695(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US6251(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US8801(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .tax_form import TaxForm | ||
from taxcalc.filings.forms.tax_form import TaxForm | ||
|
||
|
||
class US8863(TaxForm): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.