Metadata-Version: 2.1
Name: policyengine_us_data
Version: 1.15.1
Summary: A package to create representative microdata for the US.
Author-email: PolicyEngine <hello@policyengine.org>
Requires-Python: <3.13.0,>=3.10
Description-Content-Type: text/markdown
Requires-Dist: policyengine_us
Requires-Dist: policyengine_core>=3.14.1
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: microdf_python>=0.4.3
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: quantile-forest; extra == "dev"
Requires-Dist: torch; extra == "dev"
Requires-Dist: tables; extra == "dev"
Requires-Dist: tabulate; extra == "dev"
Requires-Dist: furo; extra == "dev"
Requires-Dist: jupyter-book; extra == "dev"
Requires-Dist: yaml-changelog>=0.1.7; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: tomli; extra == "dev"
Requires-Dist: itables; extra == "dev"

# PolicyEngine US Data

## Installation

```bash
pip install policyengine-us-data
```

## Building the Paper

### Prerequisites

The paper requires a LaTeX distribution (e.g., TeXLive or MiKTeX) with the following packages:

- graphicx (for figures)
- amsmath (for mathematical notation)
- natbib (for bibliography management)
- hyperref (for PDF links)
- booktabs (for tables)
- geometry (for page layout)
- microtype (for typography)
- xcolor (for colored links)

On Ubuntu/Debian, you can install these with:

```bash
sudo apt-get install texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended
```

On macOS with Homebrew:

```bash
brew install --cask mactex
```

### Building

To build the paper:

```bash
make paper
```

To clean LaTeX build files:

```bash
make clean-paper
```

The output PDF will be at `paper/main.pdf`.
