Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 457 Bytes

File metadata and controls

30 lines (20 loc) · 457 Bytes

Contributing

Setup

Requires Python 3.10 or later.

pip install -e . --group dev

Running Tests

pytest

# With coverage:
pytest --cov=instaparser

Linting & Type Checking

ruff check instaparser/ tests/
ruff format --check instaparser/ tests/
mypy

Versioning

The package version is defined in instaparser/__init__.py and read by setuptools at build time via [tool.setuptools.dynamic] in pyproject.toml.