
---

### ⚙️ Step 4: Create `pyproject.toml`

This file tells PyPI how to build your package.

#### `pyproject.toml`
```toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "crow-kit"
version = "0.0.1"
authors = [
  { name="Kallol Naha", email="your.email@example.com" }
]
description = "CroW-Kit: Toolkit for wrapper generation and data extraction."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.8"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]

[project.urls]
Homepage = "https://github.com/yourusername/crow-kit"
Repository = "https://github.com/yourusername/crow-kit"
