-
Notifications
You must be signed in to change notification settings - Fork 59
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 #148 from martinholmer/renamed-repo
Revise code comments and documentation to reflect new repository name
- Loading branch information
Showing
28 changed files
with
101 additions
and
1,606 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
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,33 +1,36 @@ | ||
[![Python 3.6](https://img.shields.io/badge/python-3.6-blue.svg)](https://www.python.org/downloads/release/python-360/) | ||
[![Codecov](https://codecov.io/gh/TPRU-demo/pitaxcalc-demo/branch/master/graph/badge.svg)](https://codecov.io/gh/TPRU-demo/pitaxcalc-demo) | ||
[![Python 3.6+](https://img.shields.io/badge/python-3.6%2B-blue.svg)](https://www.python.org/downloads/release/python-360/) | ||
[![Codecov](https://codecov.io/gh/TPRU-India/taxcalc/branch/master/graph/badge.svg)](https://codecov.io/gh/TPRU-India/taxcalc) | ||
|
||
|
||
Demonstration repository for Personal Income Tax (PIT) microsimulation model | ||
============================================================================ | ||
Tax Microsimulation Model for India | ||
=================================== | ||
|
||
This repository will be used in the World-Bank-sponsored training | ||
sessions beginning on 2018-09-24 in New Delhi at the Ministry of | ||
Finance. | ||
This repository was established for the World-Bank-sponsored training | ||
sessions that began during September 2018 in New Delhi at the Tax | ||
Policy Research Unit (TPRU) in the Ministry of Finance. The training | ||
sessions extended through June 2019. This repository, which is called | ||
`taxdata` and is owned by the GitHub organizaton called `TPRU-India`, | ||
is now managed by TPRU. | ||
|
||
Getting Started | ||
--------------- | ||
|
||
If you want to **propose code changes**, follow the directions in the | ||
[USA Tax-Calculator Contributor | ||
Guide](https://github.com/PSLmodels/Tax-Calculator/blob/master/CONTRIBUTING.md#tax-calculator-contributor-guide) | ||
on how to clone the pitaxcalc-demo git repository. Before developing | ||
on how to clone the TPRU-India taxcalc git repository. Before developing | ||
any code changes be sure to read completely the Contributor Guide and | ||
then read about our [coding | ||
style](https://github.com/TPRU-demo/pitaxcalc-demo/blob/master/CODING.md#coding-style) | ||
style](https://github.com/TPRU-India/taxcalc/blob/master/CODING.md#coding-style) | ||
and [testing | ||
procedures](https://github.com/TPRU-demo/pitaxcalc-demo/blob/master/TESTING.md#testing-procedures). | ||
procedures](https://github.com/TPRU-India/taxcalc/blob/master/TESTING.md#testing-procedures). | ||
You may find this [git cheat | ||
sheet](https://github.com/TPRU-demo/pitaxcalc-demo/blob/master/SIMPLE_GIT_USAGE.md#simple-git-usage) | ||
sheet](https://github.com/TPRU-India/taxcalc/blob/master/SIMPLE_GIT_USAGE.md#simple-git-usage) | ||
useful in preparing a GitHub pull request that contains your proposed | ||
code changes. The step-by-step workflow used to create and modify a | ||
new pull request has been documented for the USA Tax-Calculator in this | ||
[workflow document](https://github.com/open-source-economics/Tax-Calculator/blob/master/WORKFLOW.md#tax-calculator-pull-request-workflow). | ||
[workflow document](https://github.com/PSLmodels/Tax-Calculator/blob/master/WORKFLOW.md#tax-calculator-pull-request-workflow). | ||
|
||
The pitaxcalc-demo [release | ||
history](https://github.com/TPRU-demo/pitaxcalc-demo/blob/master/RELEASES.md#pitaxcalc-demo-release-history) | ||
provides a summary of past development work. | ||
The taxcalc [release | ||
history](https://github.com/TPRU-India/taxcalc/blob/master/RELEASES.md#taxcalc-release-history) | ||
provides a high-level summary of past development work. |
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,32 +1,23 @@ | ||
pitaxcalc-demo RELEASE HISTORY | ||
============================== | ||
Go [here](https://github.com/TPRU-demo/pitaxcalc-demo/pulls?q=is%3Apr+is%3Aclosed) for a complete commit history. | ||
taxcalc RELEASE HISTORY | ||
======================= | ||
Go [here](https://github.com/TPRU-India/taxcalc/pulls?q=is%3Apr+is%3Aclosed) for a complete commit history. | ||
|
||
Release numbering attempts to comply with [semantic | ||
versioning](https://semver.org/). | ||
|
||
|
||
2018-09-19 Release 1.0.0 | ||
2019-06-02 Release 2.0.0 | ||
------------------------ | ||
(last merged pull request is | ||
[#14](https://github.com/TPRU-demo/pitaxcalc-demo/pull/14)) | ||
[#148](https://github.com/TPRU-India/taxcalc/pull/148)) | ||
|
||
**Initial version with data and tax logic for USA** | ||
**Initial version with data and code for simulating the India personal | ||
income tax, corporate income tax, and goods and services tax (GST)** | ||
|
||
|
||
See | ||
[app_usa.py](https://github.com/TPRU-demo/pitaxcalc-demo/blob/master/app_usa.py) | ||
for an example of how to use release 1.0.0 to analyze the effects of a | ||
tax reform. | ||
2018-09-19 Release 1.0.0 | ||
------------------------ | ||
(last merged pull request is | ||
[#14](https://github.com/TPRU-India/taxcalc/pull/14)) | ||
|
||
Note that you can always open a branch on you local computer that contains | ||
release 1.0.0 by executing this command: | ||
``` | ||
git checkout -b b100 1.0.0 | ||
``` | ||
That command will leave you on the b100 branch. When you're finished | ||
using 1.0.0, be sure to checkout the master branch and then delete the | ||
b100 branch: | ||
``` | ||
git checkout master | ||
git branch -d b100 | ||
``` | ||
**Obsolete demonstration version with data and tax logic for USA** |
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
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
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.