Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 0 additions & 74 deletions BUILD.md

This file was deleted.

30 changes: 30 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Contributing

## Setup

Requires Python 3.10 or later.

```sh
pip install -e . --group dev
```

## Running Tests

```sh
pytest

# With coverage:
pytest --cov=instaparser
```

## Linting & Type Checking

```sh
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`.