Metadata-Version: 2.4
Name: job-market-analyzer
Version: 0.1.2
Summary: A Python package to analyze job market data
Author: Rahul
Author-email: rahulgandhi1907@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: seaborn
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Job Market Analyzer ðŸ“Š

A Python package to analyze job market data for Data Analyst roles.

## Features
- Analyze job postings from CSV
- Identify top required skills
- Calculate salary statistics
- Visualize trends using charts

## Installation
```bash
pip install job-market-analyzer

from job_market_analyzer import load_data, filter_jobs, top_skills

df = load_data("jobs.csv")
filtered = filter_jobs(df, "Data Analyst")
print(top_skills(filtered))


This makes PyPI render it **cleanly**.

---

### ðŸ”§ IMPROVEMENT 2: Do NOT ship `jobs.csv` in real PyPI package (OPTIONAL)

For learning â†’ fine  
For real PyPI â†’ better practice:

- Remove `data/jobs.csv` from package
- Let users provide their own CSV

Later we can:
- move sample data to `examples/`
- or download data via API

But this is **optional** for now.

---

### ðŸ”§ IMPROVEMENT 3: Add version info in code (Optional but nice)

In `__init__.py`:

```python
__version__ = "0.1.0"
