Metadata-Version: 2.4
Name: oi-fiscal-calc-tx
Version: 0.1.0
Summary: Standalone fiscal impact calculator for Texas households (2027 current law)
Project-URL: Repository, https://github.com/joewinkelmann/oi-fiscal-calc-tx
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: numpy
Requires-Dist: pandas
Description-Content-Type: text/markdown

# oi-fiscal-calc-tx

Standalone fiscal impact calculator for Texas households under 2027 current law.

Computes federal income tax, payroll taxes, EITC, CTC, ACA PTC, SNAP, Medicaid/CHIP eligibility, school meals, FUTA, TANF, and state sales tax for all filing statuses. All functions accept scalar or numpy array inputs.

## Install

```bash
pip install oi-fiscal-calc-tx
```

## Usage

```python
from oi_fiscal_calc_tx import compute_fiscal_impact

result = compute_fiscal_impact(
    own_w2=30000,
    age=30,
    filing_status="SINGLE",
    num_dependents=0,
)
print(result)
```

## Dependencies

- numpy
- pandas
- Python >= 3.9
